forked from Stinkstudios/sono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.56 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
{
"name": "sono",
"version": "2.1.6",
"description": "A simple yet powerful JavaScript library for working with Web Audio",
"keywords": [
"WebAudio",
"Web Audio",
"WebAudioAPI",
"Web Audio API",
"audio",
"sound"
],
"main": "core/sono.js",
"scripts": {
"postinstall": "babel src --out-dir ./",
"test": "eslint 'src/**/*.js' && karma start --single-run --browsers Chrome && WA=no karma start --single-run --browsers Chrome",
"build": "NODE_ENV=production rollup -c && rollup -c",
"start": "rollup -c -w",
"start:test": "rollup -c -w | karma start",
"lint": "eslint 'src/**/*.js'; exit 0",
"examples": "browser-sync start -s --files 'index.html, examples/**/*.html, examples/**/*.js, examples/**/*.css' --no-notify",
"examples:js": "babel examples/js/src --out-dir examples/js/",
"examples:css": "postcss examples/css/index.css --use postcss-import postcss-custom-media postcss-custom-properties postcss-calc autoprefixer -o examples/css/styles.css",
"examples:watch:css": "onchange 'examples/**/*.css' -e 'examples/css/styles.css' -- npm run examples:css",
"examples:watch:js": "onchange 'examples/js/src/*.js' -- npm run examples:js",
"build:examples": "npm run examples:js && npm run examples:css",
"lib": "rimraf core effects utils && babel src --out-dir ./"
},
"repository": {
"type": "git",
"url": "https://github.com/Stinkstudios/sono"
},
"author": "ianmcgregor",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"core-js": "^2.4.1",
"events": "^1.1.1"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"browser-sync": "^2.18.8",
"chai": "^3.5.0",
"eslint": "^4.18.2",
"karma": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"mocha": "^3.3.0",
"postcss-calc": "^5.3.1",
"postcss-cli": "^3.2.0",
"postcss-custom-media": "^5.0.1",
"postcss-custom-properties": "^5.0.2",
"postcss-import": "^9.1.0",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-strip": "^1.1.1",
"rollup-plugin-uglify": "^1.0.2",
"rollup-watch": "^3.2.2"
}
}