-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
35 lines (35 loc) · 989 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
34
35
{
"name": "strictdom",
"description": "Throws errors when performance sensitive DOM APIs are called out of 'phase'",
"main": "strictdom.js",
"scripts": {
"test": "npm run -s unit && npm run -s lint",
"unit": "karma start test/karma.conf.js --single-run",
"test-dev": "karma start test/karma.conf.js",
"lint": "jshint strictdom.js"
},
"homepage": "https://github.com/wilsonpage/strictdom",
"author": {
"name": "Wilson Page",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/wilsonpage/strictdom.git"
},
"license": "MIT",
"devDependencies": {
"chai": "^3.4.1",
"jshint": "^2.8.0",
"karma": "^0.13.15",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^0.2.2",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.1.3",
"mocha": "^2.3.4",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
},
"version": "1.0.1"
}