-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.31 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": "eminent",
"version": "0.0.8",
"description": "A DOM assertions library with Emmet syntax for JavaScript testing",
"main": "lib/eminent.js",
"scripts": {
"lint": "eslint src/*.js",
"test": "npm run lint && ./node_modules/.bin/babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha",
"coveralls": "istanbul report text-lcov | coveralls",
"build": "babel src/ -d lib/",
"docs": "jsdoc2md --template jsdoc2md/README.hbs lib/eminent.js > README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nathancahill/eminent.git"
},
"keywords": [
"testing",
"assert",
"assertion",
"test",
"dom",
"emmet"
],
"author": "Nathan Cahill <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nathancahill/eminent/issues"
},
"engines": {
"node": ">=4"
},
"homepage": "https://github.com/nathancahill/eminent#readme",
"devDependencies": {
"babel": "^6.1.18",
"babel-cli": "^6.1.18",
"babel-eslint": "^4.1.5",
"babel-preset-es2015": "^6.1.18",
"coveralls": "^2.11.4",
"eslint": "^1.8.0",
"isparta": "^4.0.0",
"istanbul": "^0.4.0",
"mocha": "^2.3.3"
},
"dependencies": {
"dom-whitespace": "^0.1.2",
"emmet": "^1.3.1",
"jsdom": "^7.0.2"
}
}