-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.1 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
27
28
29
30
31
32
33
34
35
36
{
"name": "tslint-divid",
"version": "1.3.0",
"description": "TSLint rules used in some projects at Divid.",
"main": "tslint-divid.json",
"repository": {
"type": "git",
"url": "git+https://github.com/jonaskello/tslint-divid.git"
},
"keywords": [
"tslint",
"divid"
],
"author": "Jonas Kello",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jonaskello/tslint-divid/issues"
},
"homepage": "https://github.com/jonaskello/tslint-divid#readme",
"devDependencies": {
"@types/node": "^8.5.1",
"shelljs": "^0.7.5",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"scripts": {
"tsc": "tsc",
"build": "rm -rf rules && tsc -p tsconfig.json",
"lint": "tslint './src/**/*.ts{,x}'",
"test": "yarn build && tslint --test test/rules/**/*",
"test:work": "yarn build && tslint --test test/rules/limit-relative-import/**/*",
"publish:major": "npm run build && node scripts/publish.js major",
"publish:minor": "npm run build && node scripts/publish.js minor",
"publish:patch": "npm run build && node scripts/publish.js patch"
}
}