-
Notifications
You must be signed in to change notification settings - Fork 278
/
package.json
55 lines (55 loc) · 1.76 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
{
"name": "@khanacademy/tota11y",
"version": "0.2.0",
"description": "An accessibility visualization toolkit",
"main": "dist/tota11y.js",
"repository": {
"type": "git",
"url": "https://github.com/Khan/tota11y.git"
},
"author": "Jordan Scales <[email protected]>",
"contributors": [
"Jeff Yates <[email protected]"
],
"homepage": "https://khan.github.io/tota11y/",
"devDependencies": {
"accessibility-developer-tools": "2.11.0",
"autoprefixer": "^6.5.3",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^2.0.1",
"css-loader": "^2.1.1",
"eslint": "^5.15.2",
"handlebars": "^4.1.2",
"handlebars-loader": "^1.7.1",
"jquery": "^3.4.0",
"jsdom": "^8.1.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mocha": "^10.1.0",
"postcss": "^7.0.36",
"postcss-loader": "^3.0.0",
"script-loader": "^0.7.2",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build:prod": "NODE_ENV=production webpack --config webpack.config.babel.js",
"build:dev": "webpack --config webpack.config.babel.js -d --devtool hidden",
"lint": "eslint index.js plugins test utils",
"test": "mocha --require test/babel-hook test/*.js",
"start": "webpack-dev-server --config webpack.config.babel.js --hot --inline",
"prepublishOnly": "node ./utils/pre-publish-checks.js && git diff --stat --exit-code HEAD && npm test && npm run build:prod"
},
"license": "MIT",
"dependencies": {}
}