forked from Maloric/tslint-jasmine-noSkipOrFocus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (54 loc) · 1.5 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "tslint-jasmine-noSkipOrFocus",
"version": "1.0.3",
"description": "Linting rules to disallow focused or skipped tests.",
"scripts": {
"lint": "tslint -c tslint.json src/**/*.ts test/**/*.ts",
"prerelease": "npm run build && npm run lint && npm run test",
"release": "npm publish ./dist",
"prebuild": "npm run compile",
"build": "rimraf ./dist && cp -r ./tmp/src ./dist",
"postbuild": "cp README.md dist && cp LICENSE ./dist && cp package.json ./dist",
"precompile": "rimraf ./tmp",
"compile": "tsc",
"pretest": "npm run compile",
"test": "mocha tmp/test/*.js tmp/test/**/*.js",
"test:watch": "mocha tmp/test/*.js tmp/test/**/*.js --watch"
},
"contributors": [
"Jamie Morris <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/maloric/tslint-jasmine-noSkipOrFocus.git"
},
"keywords": [
"lint",
"tslint",
"jasmine"
],
"author": {
"name": "Jamie Morris",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/maloric/tslint-jasmine-noSkipOrFocus/issues"
},
"homepage": "https://github.com/maloric/tslint-jasmine-noSkipOrFocus#readme",
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.5",
"chai": "^3.5.0",
"mocha": "3.2.0",
"tslint": "4.5.1",
"typescript": "^2.2.1"
},
"peerDependencies": {
"tslint": "^4.5.1"
},
"dependencies": {
"rimraf": "^2.6.1"
}
}