-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.9 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
{
"name": "@geodacenter/jsgeoda",
"scripts": {
"build:wasm": "node tools/binary-to-json src/jsgeoda.wasm > src/jsgeoda-wasm.json",
"build:bundle": "webpack",
"build": "npm run build:wasm && npm run build:bundle",
"test-local": "npm run build && cp lib/index.js ~/unfolded/platform/node_modules/@geodacenter/jsgeoda/lib/index.js",
"serve": "http-server",
"start": "npm run build && npm run serve",
"doc": "jsdoc -d docs --configure jsconf.json --readme README.md",
"test": "tape tests/**/*.js"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"base64-js": "^1.5.1",
"compression-webpack-plugin": "^7.1.2",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"exports-loader": "^2.0.0",
"file-loader": "^6.2.0",
"gulp": "^4.0.2",
"http-server": "^0.12.3",
"jsdoc": "^3.6.6",
"path-browserify": "^1.0.1",
"tape": "^5.0.1",
"typescript": "^4.2.4",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"worker-loader": "^3.0.8"
},
"version": "0.2.9",
"description": "A javascript library for spatial data analysis",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/geodacenter/jsgeoda.git"
},
"keywords": [
"jsgeoda",
"spatial analysis",
"spatial data analysis",
"data analysis",
"spatial analytics",
"libgeoda",
"geoda"
],
"author": "Xun Li <[email protected]> (http://lixun910.github.io)",
"license": "ISC",
"bugs": {
"url": "https://github.com/geodacenter/jsgeoda/issues"
},
"homepage": "https://github.com/geodacenter/jsgeoda#readme",
"dependencies": {},
"directories": {
"lib": "lib"
},
"engines": {
"node": ">=12"
}
}