-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.54 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
{
"name": "aoy",
"description": "Utilities for website development.",
"version": "0.0.1",
"private": true,
"main": "build/aoy.umd.js",
"jsnext:main": "build/aoy.es2015.js",
"license": "MIT",
"author": {
"name": "SHIFTBRAIN Inc.",
"url": "http://www.shiftbrain.co.jp/"
},
"contributors": [
{
"name": "matori",
"email": "[email protected]"
}
],
"devDependencies": {
"babel-plugin-espower": "^2.1.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babelify": "^7.2.0",
"del": "^2.2.0",
"js-beautify": "^1.6.2",
"karma": "^0.13.22",
"karma-browserify": "^5.0.2",
"karma-chrome-launcher": "^0.2.2",
"karma-firefox-launcher": "^0.1.7",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^0.1.0",
"karma-ie-launcher": "^0.2.0",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^2.0.0",
"karma-safari-launcher": "^0.1.1",
"mocha": "^2.4.5",
"power-assert": "^1.3.1",
"rollup": "^0.25.4",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-json": "^2.0.0",
"watchify": "^3.7.0"
},
"scripts": {
"build": "node ./scripts/build.js",
"karma": "node_modules/.bin/karma start",
"test": "npm run build & npm run karma",
"karma-win": "node_modules/.bin/karma start --browsers Chrome,Firefox,IE11,IE10,IE9",
"test-win": "npm run build & npm run karma-win",
"karma-mac": "node_modules/.bin/karma start --browsers Chrome,Safari,Firefox",
"test-mac": "npm run build & npm run karma-mac"
}
}