forked from accurat/accurapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 769 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "accurapp",
"private": true,
"scripts": {
"preinstall": "yarn run clean-yarn-cache",
"postinstall": "lerna bootstrap",
"clean-install": "lerna clean; rm -rf node_modules; yarn run clean-yarn-cache",
"clean-yarn-cache": "rm -rf $(yarn cache dir)/*accurapp*",
"lint": "node node_modules/eslint/bin/eslint.js packages",
"publish": "tasks/release.sh",
"outdated": "for P in $(ls packages); do echo '\\n' === $P ===; cd \"packages/$P/\"; yarn outdated; cd ../..; done",
"create-test-app": "yarn run clean-yarn-cache; rm -rf test-app; node packages/create-accurapp/index.js test-app --testing"
},
"devDependencies": {
"eslint-config-accurapp": "file:./packages/eslint-config-accurapp",
"lerna": "^2.0.0-rc.4"
}
}