-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.92 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
{
"name": "@ngageoint/simple-features-wkt-js",
"version": "1.1.1",
"description": "Simple Features WKT JavaScript Library",
"keywords": [
"NGA",
"simple features"
],
"license": "MIT",
"author": {
"name": "NGA",
"url": "https://www.nga.mil"
},
"contributors": [
"Christopher Caldwell <c.caldwell90@gmail.com>"
],
"homepage": "https://ngageoint.github.io/simple-features-wkt-js/",
"repository": {
"type": "git",
"url": "https://github.com/ngageoint/simple-features-wkt-js.git"
},
"bugs": {
"url": "https://github.com/ngageoint/simple-features-wkt-js/issues"
},
"scripts": {
"gh-pages-build": "npm install && npm run typedoc --options typedoc.json",
"typedoc": "rm -rf ./docs/api; typedoc --tsconfig tsconfig.json --mode file --out docs/api index.ts",
"clean": "rm -rf ./.test_run; rm -rf ./.nyc_output; rm -rf ./docs/coverage; npm run clean-dist; npm run clean-test; rm -rf docs/api",
"clean-dist": "rm -rf ./dist",
"clean-test": "rm -rf ./test/bundle ./test/node_modules ./test/tmp",
"test-node": "npm run clean; nyc --no-clean mocha -r ts-node/register",
"build-browser-test": "npm run clean && webpack -c browser.test.config.js --output-filename browser.test.bundle.js --mode=development",
"test": "npm run test-node && npm run report",
"report": "nyc report",
"build": "npm run clean && webpack && tsc",
"prepare": "npm run build"
},
"dependencies": {
"@ngageoint/simple-features-js": "1.1.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "0.1.3",
"@types/chai": "4.2.7",
"@types/fs-extra": "9.0.11",
"@types/lodash": "^4.14.157",
"@types/mocha": "5.2.7",
"@types/node": "^12.12.12",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"babel-polyfill": "^6.23.0",
"browserify": "16.5.0",
"browserify-css": "0.15.0",
"chai": "4.2.0",
"copy-webpack-plugin": "^8.1.1",
"coveralls": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"fs-extra": "9.1.0",
"json-loader": "^0.5.7",
"mocha": "6.2.2",
"mocha-lcov-reporter": "^1.3.0",
"nock": "11.7.0",
"node-loader": "^2.0.0",
"node-polyfill-webpack-plugin": "^1.1.0",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"sass": "^1.29.0",
"sass-loader": "^10.0.5",
"source-map-support": "0.5.16",
"ts-loader": "^9.3.0",
"ts-node": "^8.5.2",
"typedoc": "^0.15.4",
"typescript": "^4.5.4",
"webpack": "5.37.0",
"webpack-bundle-analyzer": "4.4.1",
"webpack-cli": "4.7.0",
"xhr-mock": "2.5.1"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "dist/sf-wkt.min.js",
"files": [
"dist"
],
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"temp-dir": "./.test_run",
"report-dir": "./docs/coverage",
"reporter": [
"lcov"
]
}
}