-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 980 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
36
37
38
39
40
41
{
"name": "inklecate",
"version": "2.0.0",
"description": "A tiny wrapper around the desktop executables for ink's command-line Ink language compiler.",
"main": "index.js",
"module": "index.js",
"bin": "./cli.js",
"scripts": {
"test": "jest",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/furkleindustries/inklecate-node.git"
},
"keywords": [
"ink",
"inklecate",
"inky",
"hypertext",
"if"
],
"author": "furkle",
"license": "MIT",
"bugs": {
"url": "https://github.com/furkleindustries/inklecate-node/issues"
},
"homepage": "https://github.com/furkleindustries/inklecate-node#readme",
"dependencies": {
"commander": "^2.20.3",
"fs-extra": "^8.1.0",
"ts-assertions": "^2.0.5",
"uuid": "^8.2.0"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/node": "^12.12.47",
"jest": "^26.1.0",
"jest-cli": "^26.1.0"
}
}