-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.09 KB
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
{
"name": "ash-vm",
"description": "Audio Scheduler VM",
"version": "0.0.0",
"private": true,
"main": "dist/ash-vm.js",
"jsnext:main": "src/index.js",
"module": "src/index.js",
"license": "MIT",
"repository": "oramics/ash-vm",
"files": [
"src",
"dist"
],
"scripts": {
"format": "prettier-standard-formatter src/* test/*",
"test": "eslint src test && jest --coverage",
"no:prepublish": "npm run test && npm run dist && npm run docs",
"build": "rollup -cm -n AshVM -f umd -i src/index.js -o dist/ash-vm.js && cp dist/* docs/dist/",
"watch": "rollup --watch -cm -n AshVM -f umd -i src/index.js -o dist/ash-vm.js",
"release": "npm run build && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish",
"docs": "docco src/* src/**/* -o docs/literate"
},
"authors": [
"@grrrwaaa",
"@charlieroberts",
"@danigb"
],
"keywords": [
"audio",
"sequencer",
"scheduler",
"WebAudio",
"Gibberish",
"music",
"live-coding"
],
"babel": {
"presets": "es2015"
},
"peerDependencies": {
"gibberish-dsp": "> 2.5.0",
"tone": "> 0.10.0"
},
"devDependencies": {
"babel-jest": "^19.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-es2015-rollup": "^3.0.0",
"eslint": "^3.15.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"husky": "^0.13.3",
"jest": "^19.0.2",
"lint-staged": "^3.4.0",
"prettier-standard-formatter": "^0.222222222222222.333333333333333",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-filesize": "^1.2.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2",
"tone": "^0.10.0",
"wait-promise": "^0.4.1"
},
"lint-staged": {
"*.js": [
"prettier-standard-formatter",
"git add"
]
}
}