-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "methodical",
"version": "0.0.3",
"description": "JavaScript interface assertion library",
"main": "src/i.js",
"scripts": {
"test": "grunt test",
"posttest": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tomhicks/methodical.git"
},
"keywords": [
"JavaScript",
"interface",
"protocol"
],
"dependencies": {
"underscore": "1.5.2"
},
"devDependencies": {
"grunt": "0.4.2",
"grunt-cli": "0.1.11",
"jshint": "2.3.0",
"sinon": "1.7.3",
"chai": "~1.8.1",
"mocha": "~1.17.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-mocha-test": "~0.8.1",
"coveralls": "~2.6.1",
"istanbul": "~0.2.3"
},
"author": "Tom Hicks <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomhicks/methodical/issues"
},
"homepage": "https://github.com/tomhicks/methodical"
}