This repository has been archived by the owner on Feb 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.42 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
{
"name": "code-copter-analyzer-jshint",
"version": "1.0.3",
"description": "Analyzer plugin for code-copter v2 which uses JSHint",
"main": "src/index.js",
"scripts": {
"clean": "rm -rf coverage/ node_modules npm-shrinkwrap.json",
"ls:todo": "egrep -nr '\\W+TODO\\W+.*$' src/ || echo 'Nothing to do.'",
"prepublish": "(in-publish && npm shrinkwrap) || (! in-publish && echo 'Skipping prepublish step')",
"preshrinkwrap": "rm -f npm-shrinkwrap.json",
"preversion": "npm test",
"test": "JASMINE_CONFIG_PATH=jasmine.json istanbul cover --handle-sigint jasmine",
"posttest": "istanbul check-coverage",
"postversion": "npm publish",
"watch:test": "nodemon -w src -x npm test"
},
"dependencies": {
"code-copter-sdk": "^1.2.1",
"jshint": "^2.9.2",
"nodemon": "^1.9.2"
},
"devDependencies": {
"in-publish": "^2.0.0",
"istanbul": "^0.4.3",
"jasmine": "^2.4.1",
"nodemon": "^1.9.1"
},
"author": "Joe Theriault <[email protected]> (http://www.josephtheriault.com)",
"bugs": {
"url": "https://github.com/jtheriault/code-copter-analyzer-jshint/issues"
},
"homepage": "https://github.com/jtheriault/code-copter-analyzer-jshint#readme",
"keywords": [
"code-copter",
"jshint",
"style",
"guide",
"test"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jtheriault/code-copter-analyzer-jshint.git"
}
}