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
48 lines (48 loc) · 1.12 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.12 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"private": true,
"name": "cli-scripts",
"version": "0.0.36",
"bin": {
"ionic-cli-scripts": "./bin/ionic-cli-scripts"
},
"scripts": {
"clean": "rimraf dist",
"lint": "tslint --project tsconfig.json",
"build": "npm run clean && tsc",
"watch": "tsc -w --preserveWatchOutput",
"test": "jest --maxWorkers=4",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"linters": {
"*.{ts,tsx}": "npm run lint"
},
"ignore": [
"**/__tests__/*.{ts,tsx}"
]
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"@ionic/cli-framework": "1.7.0",
"@ionic/utils-fs": "1.2.0",
"ansi-styles": "^3.2.0",
"chalk": "^2.3.0",
"escape-string-regexp": "^2.0.0",
"ionic": "4.12.0",
"strip-ansi": "^5.2.0",
"tslib": "^1.9.0"
},
"devDependencies": {
"@types/ansi-styles": "^3.2.0",
"@types/jest": "^24.0.3",
"@types/node": "~8.9.4",
"jest": "^23.0.1",
"jest-cli": "^24.1.0",
"lint-staged": "^8.0.0",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.1",
"tslint": "^5.9.1",
"typescript": "~3.4.2"
}
}