-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
95 lines (95 loc) · 2.26 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
{
"name": "arthrobots",
"version": "0.0.0",
"description": "A robot programming game",
"repository": "pcardune/arthrobots",
"dependencies": {
"babel-core": "6.1.21",
"babel-eslint": "4.1.5",
"babel-jest": "6.0.1",
"babel-loader": "6.1.0",
"babel-plugin-transform-react-jsx": "6.1.18",
"babel-polyfill": "^6.1.19",
"babel-preset-es2015": "6.1.18",
"codemirror": "5.8.0",
"connect-url-rewrite": "^0.1.0",
"css-loader": "0.23.0",
"del": "2.1.0",
"eslint": "1.9.0",
"eslint-loader": "1.1.1",
"eslint-plugin-react": "^3.8.0",
"events": "1.1.0",
"express": "^4.10.2",
"flux": "2.1.1",
"fluxxor": "1.7.3",
"gravatar": "1.4.0",
"jest-cli": "~0.7.1",
"keymirror": "0.1.1",
"object-assign": "4.0.1",
"parse": "^1.6.9",
"react": "0.14.2",
"react-addons-test-utils": "0.14.2",
"react-bootstrap": "0.28.1",
"react-code-mirror": "3.0.6",
"react-dom": "0.14.2",
"react-router": "1.0.0",
"showdown": "1.3.0",
"style-loader": "0.13.0",
"url-loader": "0.5.6",
"webpack": "1.12.6",
"webpack-dev-server": "1.12.1"
},
"scripts": {
"postinstall": "webpack",
"start": "node server.js",
"dev": "webpack-dev-server",
"test": "jest",
"lint": "eslint . --ext .js || true"
},
"author": "Paul Carduner",
"license": "MIT",
"engines": {
"node": "4.2.1",
"npm": "2.14.7"
},
"babel": {
"plugins": [
"transform-react-jsx"
],
"presets": [
"es2015"
],
"ignore": [
"src/core/Class.js"
]
},
"jest": {
"testPathDirs": [
"<rootDir>/src"
],
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs"
],
"collectCoverage": true,
"collectCoverageOnlyFrom": {
"src/core/ProgramParser.js": true,
"src/core/Robot.js": true,
"src/core/World.js": true,
"src/core/WorldParser.js": true,
"src/core/lang.js": true
}
}
}