-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.38 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.38 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "ionicv4-tslint",
"version": "0.0.0-development",
"description": "Linting Rules for Ionic V4",
"main": "index.js",
"scripts": {
"docs": "ts-node build/buildDocs.ts",
"format:base": "prettier --config ./.prettierrc \"*.{json,md}\" \"src/**/*.{css,scss,ts}\" \"test/**/*.{css,scss,ts}\"",
"format:check": "npm run format:base -- --list-different",
"format:fix": "npm run format:base -- --write",
"lint": "tslint -c tslint.json \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"release": "set BUILD_TYPE=prod && npm run build && rimraf dist && tsc -p tsconfig-release.json && npm run copy:common && npm run prepare:package && npm run set:vars",
"build": "rimraf dist && tsc && npm run lint && npm t",
"copy:common": "cp README.md dist",
"prepare:package": "cat package.json | ts-node build/package.ts > dist/package.json",
"test": "rimraf dist && tsc && mocha dist/test --recursive",
"test:live": "concurrently \"tsc -w\" \"mocha dist/test --watch --recursive --inspect\"",
"test:watch": "rimraf dist && tsc && BUILD_TYPE=dev npm run set:vars && mocha dist/test --watch --recursive",
"set:vars": "ts-node build/vars.ts --src ./dist",
"tscv": "tsc --version",
"tsc": "tsc",
"tsc:watch": "tsc --w",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"repository": {
"type": "git",
"url": "https://github.com/cwoolum/ionicV4-tslint.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cwoolum/ionicV4-tslint/issues"
},
"homepage": "https://github.com/cwoolum/ionicV4-tslint#readme",
"devDependencies": {
"@angular/compiler": "^5.2.10",
"@angular/core": "^5.2.10",
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"@types/node": "^9.6.7",
"@types/sprintf-js": "^1.1.0",
"chai": "^4.1.2",
"codelyzer": "^4.3.0",
"mocha": "^5.1.1",
"path": "^0.12.7",
"prettier": "^1.12.1",
"rimraf": "^2.6.2",
"rxjs": "^6.0.0",
"rxjs-compat": "^6.0.0",
"ts-node": "^6.0.1",
"tslint": "^5.0.0",
"typescript": "^2.7.2",
"semantic-release": "^15.1.8",
"travis-deploy-once": "^5.0.0"
},
"peerDependencies": {
"tslint": "^5.9.1"
},
"release": {
"publish": [{
"path": "@semantic-release/npm",
"npmPublish": true,
"pkgRoot": "./dist"
}]
}
}