forked from roundware/roundware-web-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.03 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "roundware-web-framework",
"version": "0.0.1-alpha.10",
"description": "Client framework for Roundware, a location-based contributory audio platform",
"main": "roundware.js",
"files": [
"dist"
],
"scripts": {
"test": "./node_modules/.bin/babel-node ./node_modules/jasmine/bin/jasmine.js",
"cover": "nyc --reporter=lcov -x spec/mocks -x spec/helpers npm test",
"check-coverage": "nyc check-coverage --statement 100 --branches 100 --function 100 --lines 100",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist src",
"build:umd": "webpack --output-filename roundware.umd.js",
"build:umd.min": "webpack --output-filename roundware.umd.min.js -p",
"docbuild": "jsdoc --verbose -c ./config/jsdoc.json",
"devstart": "webpack-dev-server",
"watch": "npm-watch test",
"deploy": "npm test && npm run build && npm run push"
},
"watch": {
"test": "{src,test}/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roundware/roundware-web.git"
},
"keywords": [
"audio",
"roundware"
],
"author": "Mike Subelsky <[email protected]> (http://www.subelsky.com/)",
"license": "Affero GPL",
"bugs": {
"url": "https://github.com/roundware/roundware-web/issues"
},
"homepage": "https://roundware.github.io/roundware-web-framework/",
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-loader": "7.0.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"file-loader": "0.11.1",
"jasmine": "2.8.0",
"jsdoc": "3.4.3",
"json-loader": "0.5.4",
"npm-run-all": "4.0.2",
"npm-watch": "0.1.9",
"nyc": "10.3.2",
"path": "0.12.7",
"pryjs": "1.0.3",
"rimraf": "2.6.1",
"webpack": "2.5.1",
"webpack-dev-server": "2.4.5"
},
"jshintConfig": {
"esversion": 6
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"dependencies": {
"loglevel": "1.4.1"
}
}