-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.15 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": "terser-bundle",
"version": "0.0.0",
"description": "A bundler that's tightly integrated with Terser",
"main": "lib/index.js",
"scripts": {
"test": "mocha --require test/test-prelude.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terser/terser-bundle.git"
},
"keywords": [
"bundler",
"compiler",
"terser"
],
"author": "Fábio Santos <fabiosantosart@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/terser/terser-bundle/issues"
},
"homepage": "https://github.com/terser/terser-bundle#readme",
"devDependencies": {
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"mocha": "^6.2.2",
"standard": "^14.3.1",
"standard-format": "^2.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"standard": {
"globals": [
"context",
"describe",
"it",
"beforeEach"
]
},
"lint-staged": {
"*.js": [
"standard --fix",
"git add"
]
},
"dependencies": {
"@dagrejs/graphlib": "^2.1.4",
"escodegen": "^1.12.0",
"meriyah": "^1.9.3",
"scope-analyzer": "^2.0.6"
}
}