-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "jerrytools",
"version": "1.0.0",
"description": "A small JavaScript library.",
"main": "dist/Jerry.min.js",
"directories": {
"test": "test"
},
"scripts": {
"coverage": "node_modules/.bin/nyc --reporter=html --reporter=text node_modules/mocha/bin/_mocha -r jsdom-global/register",
"test": "mocha -r jsdom-global/register",
"build": "rollup --config rollup.config.js",
"eslint": "eslint src"
},
"keywords": [
"Jerry",
"jerrytools"
],
"author": "Russ Zhong",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.0",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.10.0",
"expect.js": "^0.3.1",
"jsdom": "13.2.0",
"jsdom-global": "3.0.2",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"pre-commit": "^1.2.2",
"rollup": "^0.67.4",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^3.0.0"
},
"pre-commit": [
"eslint",
"coverage"
]
}