-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "filigree-text",
"version": "0.1.0",
"description": "A text expansion toolkit",
"main": "./dist/filigree.js",
"bin": {
"filigree": "./cli.js"
},
"types": "./dist/filigree.d.ts",
"scripts": {
"depgraph": "arkit --exclude dist,public -o depgraph.svg",
"clean": "rm -f dist/*",
"build": "npm run clean && nearleyc src/filigreeGrammar.ne -o src/filigreeGrammar.ts && nearley-railroad src/filigreeGrammar.ne -o railroad.html && tsc",
"test-filigree": "npm run build && node dist/test-filigree.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"author": "Cinnamon <cinnamon_npm@fastmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/cinnamon-bun/filigree.git"
},
"license": "MIT",
"dependencies": {
"commander": "^2.20.0",
"moo": "^0.5.0",
"nearley": "^2.16.0",
"seedrandom": "^3.0.1",
"titlecase": "^1.1.3"
},
"devDependencies": {
"@types/moo": "^0.5.0",
"@types/nearley": "^2.11.0",
"@types/node": "^12.6.2",
"@types/seedrandom": "^2.4.28",
"arkit": "^1.6.2",
"typescript": "^3.4.5"
}
}