-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "checkboxjs",
"version": "0.1.3",
"description": "Create an accessibile checkbox out of pretty much any HTML markup",
"main": "./dist/checkbox.js",
"scripts": {
"build": "NODE_ENV=production webpack",
"start": "webpack-dev-server",
"test": "NODE_ENV=test karma start",
"docs": "documentation build src/checkbox.js -f html -o docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Robdel12/checkbox.git"
},
"keywords": [
"checkbox",
"accessibility",
"aria"
],
"author": "Robert DeLuca",
"license": "ISC",
"bugs": {
"url": "https://github.com/Robdel12/checkbox/issues"
},
"homepage": "https://robdel12.github.io/checkbox/",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.1",
"documentation": "5.1.0",
"html-webpack-plugin": "^2.30.1",
"jquery": "^3.2.1",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-webpack": "^2.0.4",
"mocha": "^3.5.0",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
}
}