-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 3.07 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "mola-audio",
"version": "1.0.11",
"description": "A mola audio component",
"main": "lib/Audio.js",
"scripts": {
"start": "NODE_ENV=dev node tools/server.js",
"build": "rimraf lib & NODE_ENV=production gulp build",
"lint": "fecs src",
"prepublish": "npm run lint && npm run build",
"test": "NODE_ENV=test karma start ./test/karma.local.conf.js",
"test-ci": "NODE_ENV=test karma start ./test/karma.travis.conf.js",
"coveralls": "cat test/coverage/lcov/lcov.info | ./node_modules/.bin/coveralls",
"docs": "esdoc -c esdoc.json"
},
"keywords": [
"mola"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cxtom/mola-audio"
},
"authors": [
"cxtom <[email protected]>"
],
"license": "MIT",
"dependencies": {
"classnames": "^2.2.5",
"mola": "^1.0.7"
},
"devDependencies": {
"babel-istanbul": "^0.11.0",
"babel-loader": "^6.2.5",
"babel-plugin-external-helpers": "^6.8.0",
"babel-plugin-external-helpers-insert-require": "^1.0.0",
"babel-plugin-transform-es2015-modules-umd": "^6.12.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.8.0",
"babel-plugin-transform-es3-property-literals": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"browserify-istanbul": "^2.0.0",
"coveralls": "^2.11.12",
"css-loader": "^0.24.0",
"esdoc": "^0.4.8",
"esdoc-es7-plugin": "0.0.3",
"fecs": "^1.0.0",
"file-loader": "^0.9.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-babel-external-helpers": "^2.0.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-stylus": "^2.6.0",
"jasmine": "^2.4.1",
"karma": "^1.2.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-browserify": "^5.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-sauce-launcher": "^1.0.0",
"nib": "^1.1.2",
"react": "^0.14.8||^15.4.0",
"react-dom": "^0.14.8||^15.4.0",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.3.1",
"watchify": "^3.7.0",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.0",
"webpack-hot-middleware": "^2.12.2"
},
"babel": {
"env": {
"dev": {
"presets": [
[
"es2015",
{
"loose": true
}
],
"stage-2",
"react"
]
},
"production": {
"presets": [
[
"es2015",
{
"loose": true,
"modules": "umd"
}
],
"stage-2",
"react"
],
"plugins": [
"external-helpers",
"external-helpers-insert-require",
"transform-es3-property-literals",
"transform-es3-member-expression-literals"
]
}
}
}
}