-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 867 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "babel-plugin-transform-not-strict",
"main": "src/index.js",
"version": "0.3.1",
"author": "Amin Yahyaabadi",
"description": "Remove 'use strict' if the file is 'not strict'",
"keywords": [
"babel-plugin",
"use strict",
"not strict",
"strictMode",
"strict",
"ES6",
"babel"
],
"repository": "https://github.com/atom-ide-community/babel-plugin-transform-not-strict",
"license": "MIT",
"scripts": {
"format": "prettier --write .",
"test.format": "prettier . --check",
"lint": "eslint . --fix",
"test.lint": "eslint .",
"test": "atom --test spec/spec.js",
"bump": "ncu -u"
},
"peerDependencies": {
"@babel/core": "^7"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.20.5",
"babel-plugin-tester": "^10.0.0",
"npm-check-updates": "16.5.6"
}
}