-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
63 lines (63 loc) · 1.82 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
{
"name": "dimbin",
"version": "0.3.9",
"description": "High-performance serialization for multi-dimension arrays | 针对多维数组的高性能二进制序列化方案",
"author": "gaomeng1900",
"email": "[email protected]",
"main": "v3.js",
"types": "v3.d.ts",
"homepage": "https://github.com/alibaba/DIMBIN",
"repository": {
"type": "git",
"url": "https://github.com/alibaba/DIMBIN"
},
"keywords": [
"dimbin",
"array",
"buffer",
"serialize",
"binary",
"js",
"ts"
],
"license": "MIT",
"files": [
"package.json",
"README.md",
"v*.js",
"v*.ts",
"csharp/*.cs",
"v*.map"
],
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@types/node": "^12.0.10",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"compression": "^1.7.4",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.16.4",
"jest": "^24.8.0",
"js-file-download": "^0.4.7",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"typescript": "^3.5.2",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.2",
"webpack-dev-middleware": "^3.7.0"
},
"scripts": {
"start": "node server.js",
"test": "jest",
"dist": "NODE_ENV=production webpack --progress --colors && npm run test",
"distGeomTuple": "./node_modules/typescript/bin/tsc --sourceMap -d ./geom-tuple/GeomTuple.ts"
}
}