-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.3 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
{
"name": "FingerDrumSequencer",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha-webpack --webpack-config webpack.test.config.js \"test/**/*.test.js\"",
"build": "npm run clean && mkdir -p build/sounds && cp src/index.html build/index.html && cp src/sounds/* build/sounds/ && webpack",
"watch": "npm run clean && mkdir -p build/sounds && cp src/index.html build/index.html && cp src/sounds/* build/sounds/ && webpack -w",
"clean": "rm -rf build/*"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Shinpeim/FingerDrumSequencer.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Shinpeim/FingerDrumSequencer/issues"
},
"homepage": "https://github.com/Shinpeim/FingerDrumSequencer#readme",
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"css-loader": "^0.27.3",
"file-loader": "^0.10.1",
"mocha": "^3.2.0",
"mocha-webpack": "^0.7.0",
"sinon": "^2.1.0",
"style-loader": "^0.16.0",
"url-loader": "^0.5.8",
"vue-loader": "^11.2.0",
"vue-template-compiler": "^2.2.4",
"webpack": "^2.3.1"
},
"dependencies": {
"materialize-css": "^0.98.1",
"vue": "^2.2.4"
}
}