-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 975 Bytes
/
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
{
"private": true,
"dependencies": {
"agreement-schedules-exhibits-numbering": "^2.0.0",
"codemirror": "^5.59.4",
"commonform-commonmark": "^8.0.0",
"commonform-critique": "^1.0.3",
"commonform-docx": "^6.0.0",
"commonform-html": "^4.0.0",
"commonform-lint": "^4.0.0",
"decimal-numbering": "^3.0.2",
"file-saver": "^2.0.5",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"outline-numbering": "^2.0.0",
"resolutions-schedules-exhibits-numbering": "^1.0.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"standard": "^17.0.0"
},
"scripts": {
"prebuild": "cp node_modules/codemirror/lib/codemirror.css site/ && cp node_modules/codemirror/addon/lint/lint.css site/",
"build": "browserify -o site/bundle.js script.js",
"format": "standard --fix",
"lint": "standard"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "standard"
}
}