forked from WeAreROLI/mpejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.32 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
{
"name": "mpe",
"version": "1.0.2",
"description": "Next generation MIDI for the web",
"keywords": [
"mpe",
"midi",
"music",
"keyboard",
"javascript",
"js"
],
"author": "Oscar Dub <[email protected]>",
"homepage": "http://mpe.js.org",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/WeAreROLI/mpejs"
},
"engines": {
"node": ">=4.0.0"
},
"main": "lib/index.js",
"scripts": {
"build": "npm run clean && npm run compile",
"build:sandbox": "npm run clean && npm run compile:dev",
"clean": "rm -rf lib/*",
"compile": "WEBPACK_ENV=build webpack",
"compile:dev": "WEBPACK_ENV=dev webpack",
"docs:clean": "rm -rf docs/dist/*",
"docs:jsdoc": "jsdoc src/*/index.js -d docs",
"docs:documentation-js": "documentation build ./src/*/index.js --config docs/documentation.yml --theme docs/_theme --format html --shallow --github --name mpe.js --output docs/dist",
"docs:build": "npm run docs:clean && npm run docs:documentation-js && cp docs/CNAME circle.yml docs/dist/ && cp lib/mpe.min.js docs/dist/assets",
"docs:serve": "npm run docs:build && pushd docs/dist && python -m SimpleHTTPServer 8001 && popd",
"docs:deploy": "npm run docs:build && git-directory-deploy --directory docs/dist --branch gh-pages",
"lint": "eslint src/",
"prepublish": "npm run build",
"publish": "npm run docs:deploy",
"test": "mocha --compilers js:babel-core/register test/**/*.test.js",
"serve": "python -m SimpleHTTPServer 8000"
},
"dependencies": {
"redux": "3.5.2"
},
"devDependencies": {
"babel": "6.5.2",
"babel-cli": "6.10.1",
"babel-core": "6.9.1",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.9.0",
"chai": "3.5.0",
"concat-stream": "1.5.1",
"doctrine": "1.2.2",
"documentation": "4.0.0-beta5",
"documentation-theme-utils": "3.0.0",
"eslint": "2.13.1",
"git-directory-deploy": "1.5.0",
"highlight.js": "9.4.0",
"jsdoc": "3.4.0",
"lodash": "4.13.1",
"mocha": "2.5.3",
"mocha-logger": "1.0.5",
"remark": "5.0.1",
"remark-html": "4.0.0",
"sinon": "1.17.4",
"sinon-chai": "2.8.0",
"unist-util-visit": "1.1.0",
"vinyl": "1.1.1",
"vinyl-fs": "2.4.3",
"webpack": "1.13.1"
},
"babel": {
"presets": [
"es2015"
]
}
}