forked from unexpectedjs/unexpected-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
{
"name": "unexpected-dom",
"version": "0.2.0",
"description": "DOM plugin for the unexpected assertion libary",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "jshint . --exclude-path .gitignore",
"test": "npm run lint && mocha",
"travis": "npm run lint && npm run coverage",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- --reporter dot"
},
"repository": {
"type": "git",
"url": "https://github.com/Munter/unexpected-dom.git"
},
"keywords": [
"unexpected",
"dom",
"assertion",
"library",
"plugin"
],
"author": "Peter Müller <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Munter/unexpected-dom/issues"
},
"homepage": "https://github.com/Munter/unexpected-dom",
"devDependencies": {
"coveralls": "^2.11.2",
"istanbul": "^0.3.6",
"jsdom": "^0.11.1",
"jshint": "^2.6.3",
"magicpen": "^4.3.5",
"magicpen-prism": "^1.1.1",
"mocha": "^2.1.0",
"mocha-lcov-reporter": "0.0.2",
"unexpected": "^6.0.7"
},
"dependencies": {
"array-changes": "1.0.0"
}
}