forked from ionic-team/ionic-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.18 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.18 KB
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,
"scripts": {
"bootstrap": "lerna bootstrap && npm run build && npm run link",
"link": "lerna exec --scope \"@ionic/cli-*\" -- npm link",
"lint": "tslint -c tslint.json 'packages/*/src/**/*.ts' 'scripts/**/*.ts'",
"test": "lerna run test",
"build": "lerna run build",
"watch": "lerna run watch --parallel",
"docs": "node ./packages/cli-scripts/docs.js",
"publish:canary": "lerna publish --canary --exact --npm-tag canary",
"publish:beta": "lerna publish --exact --npm-tag beta",
"publish:ci": "npm run publish:canary -- --yes",
"publish": "lerna publish --exact --conventional-commits",
"prepush": "npm run lint"
},
"devDependencies": {
"@types/node": "^6.0.68",
"awesome-typescript-loader": "^3.1.3",
"chokidar-cli": "^1.2.0",
"concurrently": "^3.4.0",
"coveralls": "^2.2.0",
"cross-env": "^4.0.0",
"eslint-config-ionic": "0.0.2",
"husky": "^0.13.4",
"in-publish": "^2.0.0",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"lerna": "^2.0.0-rc.5",
"replace": "^0.3.0",
"ts-jest": "^20.0.4",
"tslint": "^5.3.2",
"tslint-ionic-rules": "^0.0.8",
"typescript": "^2.3.3"
}
}