-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
47 lines (47 loc) · 1.54 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
{
"name": "digital-keyboard",
"version": "1.2.2",
"main": "build/Keyboard.js",
"repository": "https://github.com/simbawus/digital-keyboard.git",
"author": "Simbawu <[email protected]>",
"description": "DigitalKeyboard Component",
"keywords": [
"DigitalKeyboard",
"Digital",
"Keyboard",
"key",
"webpack",
"simbawu"
],
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"cross-env": "^5.1.5",
"css-loader": "^0.28.9",
"digital-keyboard": "^1.1.0",
"eslint": "^4.19.1",
"eslint-config-booheefe": "^1.1.0",
"istanbul": "^0.4.5",
"jsdom": "^11.10.0",
"mocha": "^5.1.1",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.1",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack --mode production --config ./config/webpack/webpack.config.js",
"start": "yarn && cross-env NODE_ENV=development webpack-dev-server --mode development --open 'Google Chrome' --config ./config/webpack/webpack.config.js",
"test": "node ./node_modules/mocha/bin/mocha --compilers js:babel-core/register ./test/Keyboard.test.js",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha",
"coveralls": "yarn cover --report lcovonly && cat ./coverage/lcov.info | coveralls"
}
}