-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 997 Bytes
/
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
{
"name": "qtt-ts",
"version": "0.1.0",
"description": "An implementation of Quantitative Type Theory in TypeScript",
"main": "build/src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"runindex": "npm run build && node build/src/index",
"onlyindex": "node build/src/index",
"main": "npm run build && node build/src/main",
"cli": "npm run build && node build/src/cli",
"bundle": "npm run build && browserify build/src/web.js -o bundle.js",
"start": "node build/src/cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atennapel/qtt-ts.git"
},
"author": "Albert ten Napel",
"email": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/atennapel/qtt-ts/issues"
},
"homepage": "https://github.com/atennapelqtt-ts#readme",
"devDependencies": {
"@types/node": "^14.14.10",
"browserify": "^17.0.0",
"typescript": "^4.1.2"
}
}