-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
52
53
54
55
56
{
"name": "optimize-js",
"version": "1.0.3",
"description": "Optimize initial JavaScript execution/parsing by wrapping eager functions",
"main": "lib/index.js",
"scripts": {
"test": "standard && mocha --timeout 60000 test/test.js",
"benchmark": "npm run build-benchmark && hs -p 9090 benchmarks",
"build-benchmark": "sh bin/build-benchmark.sh",
"publish-benchmark": "sh bin/publish-benchmark.sh",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha test/test.js && istanbul check-coverage --lines 100 --function 100 --statements 100 --branches 100"
},
"bin": {
"optimize-js": "lib/bin.js"
},
"keywords": [
"optimize",
"optimise",
"js"
],
"author": "Nolan Lawson <nolan@nolanlawson.com>",
"license": "Apache-2.0",
"dependencies": {
"acorn": "^3.3.0",
"concat-stream": "^1.5.1",
"estree-walker": "^0.3.0",
"magic-string": "^0.16.0",
"yargs": "^4.8.1"
},
"devDependencies": {
"assert": "^1.4.1",
"denodeify": "^1.2.1",
"http-server": "^0.9.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"standard": "^7.1.2",
"uglify-js": "^2.7.0"
},
"files": [
"lib"
],
"standard": {
"ignore": [
"test/cases/**",
"benchmarks/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nolanlawson/optimize-js.git"
},
"bugs": {
"url": "https://github.com/nolanlawson/optimize-js/issues"
},
"homepage": "https://github.com/nolanlawson/optimize-js#readme"
}