forked from roundware/roundware-web-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.13 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
72
73
{
"name": "roundware-web-framework",
"homepage": "https://roundware.github.io/roundware-web-framework/",
"repository": {
"type": "git",
"url": "git+https://github.com/roundware/roundware-web.git"
},
"version": "0.10.0",
"description": "Client framework for Roundware, a location-based contributory audio platform",
"main": "dist/roundware.js",
"files": [
"dist"
],
"scripts": {
"test": "babel-node ./node_modules/jasmine/bin/jasmine.js",
"prebuild": "rimraf dist",
"build": "NODE_ENV=production npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist src",
"build:umd": "webpack --mode=production --output-filename roundware.umd.js",
"build:umd.min": "webpack -p --output-filename roundware.umd.min.js",
"docbuild": "jsdoc --verbose -c ./config/jsdoc.json",
"devstart": "NODE_ENV=development webpack-dev-server",
"deploy": "np",
"lint": "eslint src/"
},
"watch": {
"test": "{src,test}/*.js"
},
"keywords": [
"audio",
"roundware"
],
"author": "Mike Subelsky <[email protected]> (http://www.subelsky.com/)",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/roundware/roundware-web/issues"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "~7.5.5",
"babel-loader": "~8.0.6",
"eslint": "6.1.0",
"eslint-loader": "2.2.1",
"eslint-plugin-compat": "3.3.0",
"jasmine": "^3.5.0",
"jsdoc": "^3.6.4",
"np": "^6.2.1",
"npm-run-all": "^4.1.5",
"pryjs": "^1.0.3",
"rimraf": "~2.6.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "~3.7.2"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "^6.0.1",
"@turf/distance": "^6.0.1",
"@turf/line-to-polygon": "^6.0.1",
"@turf/point-to-line-distance": "^6.0.0",
"cancelandholdattime-polyfill": "1.15.1",
"core-js": "3.2.0",
"deep-extend": ">=0.5.1",
"loglevel": "^1.6.7",
"standardized-audio-context": "^24.1.5"
},
"np": {
"anyBranch": true,
"tests": false,
"yarn": false
}
}