-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
{
"name": "soundworks-template",
"authors": [
"Benjamin Matuszewski",
"Sébastien Robaszkiewicz",
"Norbert Schnell"
],
"description": "Soundworks application template.",
"license": "BSD-3-Clause",
"version": "2.0.0",
"scripts": {
"minify": "node ./bin/runner --minify",
"prewatch": "npm run transpile",
"start": "node ./bin/runner --start",
"transpile": "node ./bin/runner --transpile",
"watch": "node ./bin/runner --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/collective-soundworks/soundworks-template"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"debug": "^2.6.4",
"soundworks": "collective-soundworks/soundworks#v2.0.0",
"waves-lfo": "^1.1.6",
"source-map-support": "^0.4.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.24.1",
"browserify": "^14.3.0",
"colors": "^1.1.2",
"fs-extra": "^2.1.2",
"klaw": "^1.3.1",
"node-sass": "^4.5.2",
"uglify-js": "^3.0.6",
"watch": "^1.0.1",
"watchify": "^3.7.0"
}
}