-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 957 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
33
34
35
{
"name": "ts-prolog",
"description": "An implementation of Prolog in TypeScript",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kkty/prolog"
},
"author": "Kazushi Kitaya <kazushikitaya@gmail.com>",
"license": "MIT",
"bin": {
"ts-prolog": "./bin/cli.js"
},
"version": "0.0.4",
"scripts": {
"build": "tsc",
"dev": "ts-node ./src/cli.ts",
"test": "mocha --recursive --require ts-node/register \"test/**/*.ts\"",
"lint": "tslint 'src/**/*.ts' 'test/**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"postinstall": "npm run build"
},
"dependencies": {
"typescript": "^3.5.3",
"@types/node": "^12.6.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-airbnb": "^5.11.1"
}
}