-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "theme-tools",
"description": "A monorepo for theme-tools, yo theme, and more to help theming with good tools.",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"lint": "eslint ./",
"fix": "eslint --fix ./",
"mocha": "mocha packages/*/tests",
"lerna": "lerna",
"start": "nodemon --ignore node_modules -w packages/ --exec 'npm test'",
"test": "npm run mocha && npm run lint",
"precommit": "npm test",
"postinstall": "npm run bootstrap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/basaltinc/theme-tools.git"
},
"keywords": [
"theme-tools",
"monorepo"
],
"author": "EvanLovely <[email protected]> (http://evanlovely.com)",
"maintainers": [],
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/basaltinc/theme-tools/issues"
},
"homepage": "https://github.com/basaltinc/theme-tools#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-fs": "^1.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"husky": "^0.13.3",
"lerna": "^2.0.0-rc.5",
"mocha": "^3.3.0",
"nodemon": "^1.11.0"
}
}