forked from ionic-team/ionic-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 1.06 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
{
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap && npm run build",
"clean": "lerna run clean",
"lint": "lerna run lint --parallel",
"lint:fix": "lerna run lint -- -- --fix",
"link": "lerna exec npm link",
"unlink": "lerna exec npm unlink",
"test": "lerna run test",
"build": "lerna run build",
"watch": "lerna run watch --parallel",
"docs": "node packages/cli-scripts/bin/ionic-cli-scripts docs",
"docs:watch": "chokidar 'packages/cli-scripts/dist/docs/**/*.js' -c 'npm run docs'",
"publish:canary": "lerna publish --independent --canary --exact --npm-tag=canary --skip-git",
"publish:testing": "lerna publish --independent --canary=testing --exact --npm-tag=testing --skip-git",
"publish:ci": "lerna publish --independent -m 'chore(release): publish [skip ci]' --exact --conventional-commits",
"precommit": "git stash -k && lerna run precommit; git stash pop"
},
"devDependencies": {
"chokidar-cli": "^1.2.0",
"husky": "^0.14.3",
"lerna": "^2.9.1",
"tslint-ionic-rules": "0.0.17"
}
}