-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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
{
"name": "@caspertech/duktype",
"version": "0.0.4",
"description": "Duktape in Typescript",
"main": "index.js",
"scripts": {
"configure": "ncmake configure",
"build": "ncmake build && npm run build-ts",
"build-ts": "tsc",
"test-only": "node --expose-gc -r source-map-support/register dist/runTests.js",
"test": "ncmake build && npm run build-ts && npm run test-only",
"prepack": "npm run configure && npm run build && npm run test",
"install": "ncmake configure && ncmake build",
"run": "npm run build && npm run test && node -r source-map-support dist/example.js"
},
"author": "CasperTech Ltd",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CasperTech/duktype.git"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.14.1",
"node-cmake": "^2.5.1",
"uuid": "^8.0.0"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.5",
"@types/uuid": "^7.0.3",
"mocha": "^7.1.2",
"source-map-support": "^0.5.19",
"typescript": "^3.8.3",
"why-is-node-running": "^2.1.2"
}
}