-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.66 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
{
"name": "webjerk",
"version": "0.1.0",
"description": "browser automation pipelines & plugins",
"main": "index.js",
"repository": "git@github.com:cdaringe/webjerk.git",
"author": "cdaringe",
"license": "MIT",
"devDependencies": {
"ava": "2.4.0",
"bluebird": "3.7.2",
"execa": "2.1.0",
"fs-extra": "5.0.0",
"husky": "7.0.4",
"lerna": "4.0.0",
"lint-staged": "12.1.2",
"npm-run-all": "4.1.5",
"perish": "1.0.3",
"prettier-standard": "16.4.1",
"standard": "16.0.4"
},
"scripts": {
"clean": "for i in $(ls packages/); do rm -rf packages/$i/node_modules packages/$i/package-lock.json packages/$i/yarn.lock; done;",
"lint-staged": "lint-staged",
"postinstall": "lerna bootstrap",
"precommit": "run-p lint-staged test",
"prepublish:lerna": "cp README.md packages/webjerk/README.md",
"publish:lerna": "lerna publish",
"publish:retry": "node scripts/publish",
"test": "lerna run test --stream --parallel",
"docs": "node scripts/docs",
"format": "prettier-standard '{src,test,scripts}/**/*.{js,jsx,ts,tsx}'",
"lint": "standard '{src,test,scripts}/**/*.{js,jsx,ts,tsx}' --fix"
},
"dependencies": {
"gh-pages": "^3.0.0",
"github-markdown-css": "^5.0.0",
"jsdoc": "^3.6.3",
"lodash": "^4.17.4",
"marked": "^4.0.0",
"minami": "^1.2.3",
"swig-templates": "^2.0.2"
},
"standard": {
"ignore": [
"golden-site",
"build"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"{src,test,scripts}/**/*.{js,jsx,ts,tsx}": [
"npm run format",
"npm run lint",
"git add"
]
}
}