-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.63 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
57
58
59
60
61
62
63
64
65
{
"name": "customize-engine-uglify",
"version": "1.0.0",
"description": "UglifyJS adapter for Customize",
"repository": {
"type": "git",
"url": "[email protected]:bootprint/customize-engine-uglify.git"
},
"homepage": "https://github.com/bootprint/customize-engine-uglify",
"author": {
"name": "Nils Knappmeier",
"email": "[email protected]",
"url": "https://github.com/nknapp"
},
"bugs": {
"url": "https://github.com/bootprint/customize-engine-uglify/issues"
},
"main": "index.js",
"license": "MIT",
"scripts": {
"preformat": "standard --version || npm -g install standard",
"format": "standard --fix",
"pretest": "standard --version || npm -g install standard",
"test": "mocha --recursive && standard",
"thought": "thought run -a",
"prethoughtcheck": "thought --version || npm -g install thought",
"thoughtcheck": "thought check-engines",
"version": "thoughtful changelog -o -a && npm run thought",
"preversion": "npm run thoughtcheck"
},
"dependencies": {
"lodash": "^4.17.4",
"q": "^1.4.1",
"uglify-js": "^2.8.5"
},
"devDependencies": {
"chai": "^3.2.0",
"chai-as-promised": "^6.0.0",
"customize": "^1.0.0",
"ghooks": "^2.0.0",
"mocha": "^3.2.0",
"thoughtful-release": "^0.3.0",
"trace-and-clarify-if-possible": "^1.0.0"
},
"peerDependencies": {
"customize": "^1.0.0"
},
"standard": {
"ignore": [
"test/fixtures/**"
]
},
"files": [
"index.js",
"schema.js",
"lib",
"bin"
],
"config": {
"ghooks": {
"pre-push": "thoughtful precommit && standard"
}
},
"keywords": []
}