-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 KB
/
package.json
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "es6-complete",
"version": "0.0.8",
"description": "a way to complete objects",
"main": "dist/index.js",
"keywords": "es6-javascript",
"engines": {
"node": ">=10.0"
},
"author": {
"email": "[email protected]",
"name": "Matt That",
"url": "http://matt-that.com"
},
"contributors": [
{
"email": "[email protected]",
"name": "Matt That",
"url": "http://matt-that.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/tadalabs/es6-complete.git"
},
"license": {
"type": "Apache-2.0",
"url": "https://spdx.org/licenses/Apache-2.0"
},
"scripts": {
"lint": "eslint --fix .",
"test": "mocha --compilers js:babel-register --reporter spec ./test/**/*.test.js",
"transpile": "babel src --out-dir dist",
"build": "npm run lint && npm run test && npm run transpile",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^5.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^3.6.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"prettier": "^1.19.1"
}
}