-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 875 Bytes
/
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
{
"name": "testability",
"description": "Testing utility for replacing dependencies with mock versions at test-time, without modifying the original source.",
"author": "Joshua Toenyes <[email protected]>",
"version": "1.0.0-a.1",
"license": "MIT",
"main": "dist/testability.js",
"repository": {
"type": "git",
"url": "https://github.com/JoshuaToenyes/testability"
},
"bugs": {
"url": "https://github.com/JoshuaToenyes/testability/issues"
},
"dependencies": {},
"devDependencies": {
"chai": "1.9.x",
"grunt": "0.4.x",
"grunt-coffeelint": "0.0.13",
"grunt-contrib-coffee": "0.11.x",
"grunt-contrib-clean": "0.6.x",
"grunt-mocha-test": "0.11.x",
"grunt-contrib-watch": "0.6.x"
},
"keywords": [
"testing",
"util"
],
"scripts": {
"prepublish": "grunt compile",
"test": "grunt test"
}
}