-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·71 lines (71 loc) · 1.69 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
{
"name": "node-occ",
"version": "0.5.4",
"description": "OpenCascade OCCT Wrapper for Node js",
"preferGlobal": true,
"dependencies": {
"async": "^3.2.0",
"colors": "*",
"gettemporaryfilepath": "1.0.1",
"nan": "^2.14.1",
"node-pre-gyp": " https://github.com/antonymarion/node-pre-gyp.git",
"pace": "~0.0.4",
"progress": "~2.0.3"
},
"devDependencies": {
"@types/mocha": "^8.0.2",
"aws-sdk": "^2.734.0",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-require-path-exists": "^1.1.9",
"eslint-plugin-standard": "^4.0.1",
"eslint-utils": "^2.1.0",
"mocha": "^7.2.0",
"should": "~13.2.3"
},
"main": "index",
"author": {
"name": "Antony MARION"
},
"engines": {
"node": "*"
},
"keywords": [
"3D",
"CAD",
"OpenCascade",
"OCE",
"Solid Modeler",
"geometry",
"BRep"
],
"repository": {
"type": "git",
"url": "https://github.com/antonymarion/node-occ.git"
},
"scripts": {
"preinstall": "node pre-install.js",
"install": "node-pre-gyp install --fallback-to-build",
"test": "mocha -R spec",
"lint": "eslint lib test bin",
"doc": "grunt doc",
"postinstall": "node post-install.js"
},
"binary": {
"module_name": "occ",
"module_path": "./lib/binding/",
"host": "https://github.com/antonymarion/node-occ/releases/download/",
"remote_path": "{version}"
},
"gypfile": true,
"bugs": {
"url": "https://github.com/antonymarion/node-occ/issues"
},
"directories": {
"test": "test"
},
"license": "MIT"
}