-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.51 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
{
"name": "@ngageoint/gars-js",
"version": "1.1.0",
"displayName": "GARS Javascript",
"description": "GARS Javascript",
"keywords": [
"NGA",
"GARS"
],
"repository": {
"type": "git",
"url": "https://github.com/ngageoint/gars-js.git"
},
"author": {
"name": "NGA"
},
"contributors": [
{
"name": "Kevin Gilland",
"email": "kgilland@caci.com"
}
],
"homepage": "https://www.nga.mil",
"engines": {
"npm": ">= 6.x"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@ngageoint/color-js": "^2.1.0",
"@ngageoint/grid-js": "^2.1.0",
"sprintf-js": "^1.1.2",
"tstl": "^2.5.8"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/chai": "^4.3.3",
"@types/mocha": "9.1.1",
"@types/sprintf-js": "^1.1.2",
"chai": "4.3.6",
"coveralls": "3.1.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.8.3",
"typedoc": "^0.23.19"
},
"scripts": {
"gh-pages-build": "npm install && npm run typedoc --options typedoc.json",
"typedoc": "rm -rf ./docs/api; typedoc --tsconfig tsconfig.json --out docs/api index.ts",
"clean": "rm -rf ./.test_run; rm -rf ./.nyc_output; rm -rf ./docs/coverage; rm -rf ./dist; npm run clean-test; rm -rf docs/api",
"clean-test": "rm -rf ./test/bundle ./test/node_modules ./test/tmp",
"test:run": "mocha --config .mocharc.js",
"test": "npm run test:run",
"compile": "tsc",
"build": "npm run compile",
"report": "nyc report",
"coverage": "nyc npm run test:run",
"lint:prettier": "prettier --check \"lib/**/*.ts\" \"test/**/*.ts\"",
"lint:tslint": "tslint -p tsconfig.json",
"lint": "npm run lint:tslint && npm run lint:prettier",
"fix:prettier": "prettier --write \"lib/**/*.ts\" \"test/**/*.ts\"",
"prebuild": "npm run clean",
"pretest": "npm run build",
"prepublishOnly": "npm run build && npm run lint"
},
"files": [
"dist"
],
"directories": {
"lib": "./lib"
},
"nyc": {
"temp-dir": "./.test_run",
"report-dir": "./docs/coverage",
"reporter": [
"lcov"
]
}
}