forked from jdan/tota11y
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.27 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
{
"name": "tota11y",
"version": "0.1.6",
"description": "An accessibility visualization toolkit",
"repository": {
"type": "git",
"url": "http://github.com/Khan/tota11y.git"
},
"author": "Jordan Scales <[email protected]>",
"devDependencies": {
"accessibility-developer-tools": "2.9.0-rc.0",
"autoprefixer-loader": "^2.0.0",
"babel": "^5.6.7",
"babel-core": "^5.0.12",
"babel-loader": "^5.0.0",
"css-loader": "^0.10.1",
"eslint": "^0.23.0",
"handlebars": "^3.0.1",
"handlebars-loader": "^1.0.0",
"jquery": "^2.1.3",
"jsdom": "^8.1.0",
"less": "^2.5.0",
"less-loader": "^2.2.0",
"mocha": "^2.2.5",
"postcss": "^4.1.11",
"postcss-loader": "^0.4.3",
"script-loader": "^0.6.1",
"style-loader": "^0.10.1",
"webpack": "^1.8.4",
"webpack-dev-server": "^1.9.0"
},
"scripts": {
"build": "npm run prod && npm run dev",
"prod": "webpack --config webpack.config.babel.js -p",
"dev": "webpack --config webpack.config.babel.js -d --devtool hidden --output-file=tota11y.js",
"lint": "eslint index.js plugins test utils",
"test": "mocha --require test/babel-hook test/*.js",
"live-test": "webpack-dev-server --config webpack.config.babel.js --hot --inline"
},
"license": "MIT"
}