-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 968 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
{
"name": "tourist-core",
"version": "0.6.0",
"description": "An implementation of Tourist in node.js.",
"main": "dist/index.js",
"repository": "github:tourist-doc/tourist-core",
"scripts": {
"test": "tsc && mocha --inline-diffs -c --require ts-node/register test/tourist.test.ts test/gitProvider.test.ts",
"build": "tsc"
},
"author": "Harrison Goldstein <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.7.18"
},
"dependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/deep-equal": "^1.0.1",
"@types/del": "^3.0.1",
"@types/fs-extra": "^7.0.0",
"@types/mocha": "^5.2.7",
"async-file": "^2.0.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"fs-extra": "^8.1.0",
"lodash": ">=4.17.13",
"mocha": "^6.1.4",
"parse-diff": "^0.5.1",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.7"
}
}