-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 1.18 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
{
"author": {
"name": "George Bochenek",
"email": "noreply@esri.com"
},
"contributors": [
{
"name": "Randy Jones",
"email": "randy_jones@esri.com"
}
],
"name": "esri-wab-build",
"version": "1.2.0",
"description": "Build ESRI Web App Builder Applications for performance.",
"license": "Apache-2.0",
"main": "app/build",
"bin": "./app/build",
"man": "./man/doc.1",
"keywords": [
"Esri",
"ArcGIS",
"Web",
"AppBuilder",
"WebAppBuilder",
"WAB",
"Build",
"Builder"
],
"engines": {
"node": ">=6.9.4"
},
"files": [
"app",
"man"
],
"repository": {
"type": "git",
"url": "https://github.com/Esri/esri-wab-build"
},
"dependencies": {
"adm-zip": "^0.4.11",
"babylon": "^6.17.4",
"fs-extra": "^3.0.1",
"hjson": "^3.1.1",
"requirejs": "^2.1.14",
"rimraf": "^2.6.1"
},
"devDependencies": {
"husky": "^0.14.1",
"lint-staged": "^4.0.0",
"mocha": "^5.0.0",
"prettier": "^1.5.2",
"sinon": "^4.3.0"
},
"scripts": {
"precommit": "lint-staged",
"test": "mocha"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}