-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
60 lines (60 loc) · 1.78 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
{
"name": "megaman2-js",
"version": "0.2.2",
"license": "MIT",
"repository": "https://github.com/pomle/megamanjs",
"homepage": ".",
"scripts": {
"autoformat": "prettier --trailing-comma es5 --write './src/**/*.{js,jsx}'",
"build": "react-scripts build",
"build:test": "webpack --config ./test/webpack.config.js",
"eject": "react-scripts eject",
"heroku-postbuild": "yarn run build",
"start": "react-scripts start",
"start:prod": "serve ./build -C --port $PORT",
"test": "yarn run test:unit && yarn run build && yarn run build:test && yarn run test:browser",
"test:browser": "karma start .karma.conf --single-run --reporters mocha",
"test:unit": "mocha 'src/**/*-test.js'"
},
"dependencies": {
"@snakesilk/engine": "^0.12.0",
"@snakesilk/megaman-kit": "^0.7.2",
"@snakesilk/platform-kit": "^0.2.1",
"@snakesilk/react-loader-progress": "^0.0.1",
"@snakesilk/react-presenter": "0.2.0",
"@snex/react-connect": "0.3.2",
"@snex/react-input-mapper": "^0.3.0",
"desensitize-mousemove": "^0.1.3",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-scripts": "^5.0.0",
"serve": "^6.0.6"
},
"devDependencies": {
"@snakesilk/testing": "^0.2.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"expect.js": "^0.3.1",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"mocha": "^3.5.0",
"prettier": "^1.5.3",
"sinon": "^3.2.0",
"webpack": "^3.5.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}