-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "@openscope/validator",
"version": "2.4.1",
"description": "A CLI used to validate an airport definition file used in the [openscope](http://openscope.co) ATC Simulator",
"main": "index.js",
"preferGlobal": true,
"bin": "./bin/validator.js",
"scripts": {
"start": "node ./index.js -a ksea --fixes --spawnPatterns",
"help": "node ./index.js -h",
"test": "nyc mocha 'lib/**/*.spec.js'",
"test:watch": "nyc mocha -w --reporter dot '{,!(_mock)/**/}*.spec.js'",
"posttest": "nyc report --reporter=lcov --reporter=text-summary"
},
"author": "Nate Geslin, [email protected]",
"repository": {
"url": "https://github.com/openscope/validator"
},
"license": "MIT",
"nyc": {
"exclude": [
"**/*.spec.js",
"**/_mock/**"
]
},
"dependencies": {
"chalk": "^2.4.1",
"lodash": "^4.17.10",
"minimist": "^1.2.0",
"ora": "^2.1.0",
"tcomb": "^3.2.27"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"sinon": "^5.0.10"
}
}