forked from zlsa/atc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3 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
114
115
{
"name": "atc",
"version": "3.2.0",
"description": "An ATC simulator in HTML5",
"engines": {
"node": "6.4.0",
"npm": "3.10.3"
},
"scripts": {
"postinstall": "gulp build",
"test": "nyc --require babel-core/register ava --serial --concurrency=5",
"build": "gulp dist && npm run test",
"report": "nyc report --reporter=cobertura --reporter=lcov",
"coverage": "npm run test && npm run report",
"lint": "eslint src/**; exit 0",
"start": "gulp server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zlsa/atc.git"
},
"keywords": [
"atc",
"html5",
"canvas",
"javascript",
"game",
"simulator",
"air traffic control",
"airline",
"aviation",
"airplane"
],
"author": "Jon Ross <jonrosszlsa@gmail.com> (http://zlsa.github.io/)",
"contributors": [
"Fechulo (https://github.com/Fechulo)",
"Erik Quinn (https://github.com/erikquinn)",
"indianbhaji (https://github.com/indianbhaji)",
"Dmitri Lebedev <ryba4@ryba4.com> (http://one-giant-leap.info)",
"tedrek (https://github.com/tedrek)",
"Nate Geslin <teamtomkins23@gmail.com> (https://github.com/n8rzz)",
"Abraham Anderson <abeis@msn.com> (https://github.com/Dabea)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/zlsa/atc/issues"
},
"homepage": "https://github.com/zlsa/atc#readme",
"ava": {
"files": [
"test/**/*.spec.js"
],
"source": [
"!**/_mocks/**",
"!**/fixtures/**"
],
"verbose": true,
"require": [
"babel-core/register"
]
},
"nyc": {
"all": false,
"include": [
"src/assets/scripts/**/*.js",
"!**/_mocks/**",
"!**/fixtures/**"
]
},
"dependencies": {
"express": "^4.14.0",
"jquery": "^3.1.0",
"lodash": "^4.15.0",
"raf": "^3.3.0"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"cli-table": "^0.3.1",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-cache": "^0.4.5",
"gulp-clean": "^0.3.2",
"gulp-cli": "^1.2.2",
"gulp-concat": "^2.6.0",
"gulp-connect": "^5.0.0",
"gulp-eslint": "^3.0.1",
"gulp-imagemin": "^3.0.3",
"gulp-minify-css": "^1.2.4",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7",
"nyc": "^6.2.0",
"path": "^0.12.7",
"rimraf": "^2.5.4",
"run-sequence": "^1.2.2",
"sinon": "^1.17.6",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}