-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "jsdomify",
"version": "3.1.0",
"description": "Create a JSDom instance for browserless testing, exposing some handling methods",
"main": "lib/jsdomify.js",
"directories": {
"test": "test"
},
"dependencies": {
"jsdom": "9.5.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"coveralls": "^2.11.12",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.2",
"isparta": "^4.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"pre-commit": "^1.1.3",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.3.1",
"unexpected": "^10.16.0"
},
"scripts": {
"compile": "babel src/ --out-dir lib/",
"coverage": "babel-node node_modules/.bin/isparta cover --report cobertura --report html node_modules/.bin/_mocha --report lcovonly",
"lint:all": "eslint src/",
"lint:cached": "LIST=`git diff --cached --name-only | grep \\.js | grep -v json`; if [ \"$LIST\" ]; then eslint $LIST; fi",
"prepublish": "npm run compile",
"test": "mocha --compilers js:babel-core/register",
"travis": "npm run lint:all && npm run coverage"
},
"pre-commit": [
"lint:cached"
],
"files": [
"lib/jsdomify.js"
],
"repository": {
"type": "git",
"url": "git://github.com/dmatteo/jsdomify.git"
},
"keywords": [
"jsdom",
"dom",
"test",
"html",
"testing",
"mocha"
],
"author": "Domenico Matteo <[email protected]>",
"license": "MIT",
"readme": "README.md",
"bugs": {
"url": "https://github.com/dmatteo/jsdomify/issues"
},
"homepage": "https://github.com/dmatteo/jsdomify"
}