forked from openscope/openscope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 3.46 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "openscope",
"version": "6.15.1",
"description": "An ATC simulator in HTML5",
"engines": {
"node": "11.3.0",
"npm": "6.4.0"
},
"scripts": {
"build": "gulp build --prod",
"build:dev": "gulp build",
"coveralls": "nyc report -r text-lcov | coveralls",
"gulp": "gulp build",
"lint-diff": "lint-diff",
"lint": "eslint src/assets/scripts/client/**",
"posttest": "npm run report",
"report": "nyc report --reporter=cobertura --reporter=lcov",
"server": "npm run start",
"start": "node public/assets/scripts/server/index.js",
"test": "nyc ava --concurrency=5",
"validator": "validator -a"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openscope/openscope.git"
},
"keywords": [
"atc",
"html5",
"canvas",
"javascript",
"game",
"simulator",
"air traffic control",
"airline",
"aviation",
"airplane"
],
"author": "Jon Ross <[email protected]> (http://zlsa.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/openscope/openscope/issues"
},
"homepage": "https://github.com/openscope/openscope",
"ava": {
"files": [
"test/**/*.spec.js"
],
"sources": [
"!**/_mocks/**",
"!**/fixtures/**",
"!**/testHelpers/**"
],
"verbose": true,
"require": [
"@babel/register",
"./test/testHelpers/globalProps.js",
"./test/testHelpers/localStorage.js"
]
},
"nyc": {
"all": false,
"include": [
"src/assets/scripts/**/*.js",
"!src/assets/scripts/client/constants/**/*.js",
"!**/_mocks/**",
"!**/fixtures/**",
"!**/testHelpers/**",
"!**/public/**"
]
},
"dependencies": {
"ansi-colors": "3.2.4",
"coveralls": "3.0.3",
"express": "4.16.4",
"fancy-log": "1.3.3",
"jquery": "3.4.1",
"lodash": "4.17.13",
"mkdirp": "0.5.1",
"raf": "3.4.1",
"showdown": "1.9.0",
"yargs": "13.2.2"
},
"devDependencies": {
"@babel/core": "7.4.4",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-proposal-json-strings": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.4.4",
"@babel/plugin-proposal-optional-chaining": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-syntax-import-meta": "7.2.0",
"@babel/polyfill": "7.4.4",
"@babel/preset-env": "7.4.4",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.4.4",
"@openscope/validator": "latest",
"ava": "1.4.1",
"babel-eslint": "10.0.1",
"babelify": "10.0.0",
"browserify": "16.2.3",
"cli-table": "0.3.1",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.12.4",
"glob-fs": "0.1.7",
"gulp": "4.0.1",
"gulp-autoprefixer": "6.1.0",
"gulp-clean": "0.4.0",
"gulp-clean-css": "4.2.0",
"gulp-cli": "2.2.0",
"gulp-concat": "2.6.1",
"gulp-eslint": "5.0.0",
"gulp-hb": "8.0.0",
"gulp-if": "2.0.2",
"gulp-jsonmin": "1.2.0",
"gulp-less": "4.0.1",
"gulp-rename": "1.4.0",
"gulp-sourcemaps": "2.6.5",
"gulp-uglify": "3.0.2",
"handlebars-helpers": "0.10.0",
"handlebars-layouts": "3.1.4",
"lint-diff": "1.2.1",
"merge-stream": "1.0.1",
"nyc": "14.1.0",
"path": "0.12.7",
"rimraf": "2.6.3",
"sinon": "7.3.2",
"vinyl-buffer": "1.0.1",
"vinyl-source-stream": "2.0.0"
}
}