-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.59 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.59 KB
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
{
"name": "extensions",
"version": "0.1.0",
"description": "Sets the foundation for building/testing Geobase extensions in a consistent way.",
"scripts": {
"dev": "webpack --mode development",
"serve": "webpack-serve",
"test_all": "mocha --timeout 15000 -r ts-node/register -r tsconfig-paths/register \"./src/**/*spec.{ts,tsx}\"",
"test": "mocha --timeout 15000 -r ts-node/register -r tsconfig-paths/register -r jsdom-global/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fgpv-vpgf/extensions.git"
},
"keywords": [
"extension",
"RAMP"
],
"author": "Dave Brochu",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/jquery": "3.3.5",
"@types/jsdom": "^12.2.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.0",
"chai": "^4.2.0",
"css-loader": "1.0.0",
"jquery": "^3.3.1",
"jsdom": "^12.2.0",
"jsdom-global": "^3.0.2",
"mini-css-extract-plugin": "0.4.1",
"mocha": "^5.2.0",
"node-sass": "4.9.3",
"sass-loader": "7.1.0",
"style-loader": "0.22.1",
"ts-loader": "4.4.2",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.6.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "3.0.1",
"webpack": "4.16.5",
"webpack-cli": "3.1.0",
"webpack-serve": "2.0.2"
},
"dependencies": {
"axios": "^0.18.0",
"point-in-polygon": "^1.0.1",
"rxjs": "^6.3.3"
}
}