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
50 lines (50 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
{
"name": "code-copter",
"version": "2.0.0",
"description": "Integrate JavaScript static code analysis into test framework",
"scripts": {
"clean": "rm -rf coverage/ node_modules npm-shrinkwrap.json",
"examples": "scripts/run-examples",
"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",
"posttest": "istanbul check-coverage",
"postversion": "npm publish",
"test": "JASMINE_CONFIG_PATH=jasmine.json istanbul cover --handle-sigint jasmine",
"watch:test": "nodemon -w src -x npm test"
},
"repository": {
"type": "git",
"url": "[email protected]:jtheriault/code-copter.git"
},
"keywords": [
"code-copter",
"test",
"jasmine",
"jshint",
"style guide"
],
"author": "Joe Theriault <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jtheriault/code-copter/issues"
},
"dependencies": {
"code-copter-analyzer-jscs": "1.0.6",
"code-copter-analyzer-jshint": "1.0.3",
"code-copter-reporter-jasmine": "1.0.3",
"code-copter-sdk": "1.2.3",
"extend": "3.0.0",
"parent-require": "1.0.0",
"walk": "2.3.9"
},
"devDependencies": {
"in-publish": "2.0.0",
"istanbul": "0.4.3",
"jasmine": "2.4.1",
"nodemon": "1.9.1",
"proxyquire": "1.7.4",
"jsdoc-to-markdown": "~1.3.6"
}
}