-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.08 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
{
"name": "tsembind",
"version": "1.1.0",
"description": "EMBind Typescript Declarations Generator",
"main": "src/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"src/**/*.js",
"src/**/*.ts",
"tsconfig.json"
],
"scripts": {
"test": "node test/generate-d-ts-files.js",
"tsc-src": "tsc -p src.tsconfig.json && chmod +x src/cmd.js",
"tsc-test": "tsc -p test.tsconfig.json",
"build": "npm run make && npm run tsc-src",
"make": "emcmake cmake -S . -B build && emmake make -C build",
"prepare": "npm run tsc-src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ted537/tsembind.git"
},
"author": "ted537",
"license": "ISC",
"bin": {
"tsembind": "./src/cmd.js"
},
"bugs": {
"url": "https://github.com/ted537/tsembind/issues"
},
"homepage": "https://github.com/ted537/tsembind#readme",
"dependencies": {
"commander": "^7.2.0"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"typescript": "^4.3.2",
"@types/node": "^15.3.0",
"mocha": "^8.4.0"
}
}