-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.83 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
67
68
69
70
71
72
{
"name": "@quailjs/quail-core",
"description": "Quail, the framework for building accessibility testing packages.",
"version": "0.0.21",
"author": {
"name": "Jesse Beach",
"email": "splendidnoise@gmail.com",
"url": "https://jessebeach.github.io/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/quailjs/quail-core.git"
},
"bugs": "http://github.com/quailjs/quail-core/issues",
"dependencies": {
"data-set": "^4.0.0",
"document-offset": "^1.0.4",
"is-dom": "^1.0.5"
},
"devDependencies": {
"babel-eslint": "^6.0.2",
"babel-plugin-transform-object-rest-spread": "^6.1.18",
"babel-polyfill": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babelify": "^7.2.0",
"browserify": "^11.0.1",
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"chai-spies": "^0.5.1",
"domify": "^1.4.0",
"eslint": "^2.8.0",
"jscs": "^2.6.0",
"karma": "^0.13.15",
"karma-browserify": "^4.4.1",
"karma-chai": "^0.1.0",
"karma-firefox-launcher": "^0.1.7",
"karma-html-reporter": "^0.2.7",
"karma-mocha": "^0.2.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sinon": "^1.0.4",
"karma-spec-reporter": "0.0.23",
"mkdirp": "^0.5.1",
"mocha": "^2.3.4",
"npm-watch": "0.0.1",
"phantomjs": "^1.9.19",
"sinon": "^1.10.3"
},
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"jscs": "jscs -c .jscsrc src --esnext",
"eslint": "eslint .",
"karma": "karma start",
"test": "npm run jscs && npm run eslint && karma start",
"watch": "npm-watch"
},
"main": "./src/index.js",
"watch": {
"compile": [
"src/**/*.js"
],
"jscs": [
"src/**/*.js",
"test/**/*.js"
],
"eslint": [
"src/**/*.js",
"test/**/*.js"
]
}
}