-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
79 lines (79 loc) · 2.47 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
74
75
76
77
78
79
{
"name": "roundware-web-framework",
"homepage": "https://roundware.github.io/roundware-web-framework/",
"repository": {
"type": "git",
"url": "git+https://github.com/roundware/roundware-web-framework.git"
},
"version": "0.12.7",
"description": "Client framework for Roundware, a location-based contributory audio platform",
"main": "dist/roundware.js",
"files": [
"dist"
],
"types": "dist/roundware.d.ts",
"scripts": {
"test": "jest",
"build": "rm -rf dist && NODE_ENV=production && npm-run-all --parallel build:*",
"build:main": "babel src --out-dir dist --extensions '.ts' --copy-files src/types/*.d.ts && tsc --declaration --outDir dist/ --emitDeclarationOnly",
"build:umd": "webpack --mode=production --output-filename roundware.umd.js",
"docbuild": "jsdoc --verbose -c ./config/jsdoc.json",
"devstart": "NODE_ENV=development webpack server",
"deploy": "np",
"lint": "eslint src/",
"watch:babel": "babel --watch src --out-dir dist --extensions '.ts'",
"watch:declarations": "tsc --declaration --outDir dist/ --emitDeclarationOnly --watch",
"watch": "npm-run-all --parallel watch:*"
},
"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-framework/issues"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-compat": "^3.13.0",
"jest": "^27.2.0",
"jsdoc": "^3.6.7",
"np": "^10.0.7",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.0"
},
"dependencies": {
"@turf/bbox": "^6.5.0",
"@turf/boolean-point-in-polygon": "^6.5.0",
"@turf/buffer": "^6.5.0",
"@turf/distance": "^6.5.0",
"@turf/line-to-polygon": "^6.5.0",
"@turf/point-to-line-distance": "^6.5.0",
"@types/lodash": "^4.14.179",
"lodash": "^4.17.21",
"loglevel": "^1.7.1",
"standardized-audio-context": "^25.3.9"
},
"np": {
"anyBranch": true,
"tests": false,
"yarn": false
}
}