-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 956 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": "cirru-parser",
"version": "0.10.8",
"description": "Cirru Parser in CoffeeScript",
"main": "./lib/parser.js",
"scripts": {
"watch": "coffee -wbc -o lib/ src/*",
"compile": "coffee -bc -o lib/ src/*",
"release": "yarn compile && yarn vite build --base=./ && cp -r ast dist/ && cp -r cirru dist/",
"test": "yarn esbuild --bundle --outfile=dist/bundle.js --platform=node lib/test.js && node dist/bundle.js"
},
"author": "jiyinyiyong",
"license": "MIT",
"keywords": [
"cirru",
"parser"
],
"devDependencies": {
"chalk": "^4.1.2",
"coffeescript": "^2.5.1",
"esbuild": "^0.12.28",
"textarea-indent": "^0.0.2",
"vite": "^3.2.11"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/Cirru/parser.coffee.git"
},
"bugs": {
"url": "https://github.com/Cirru/parser.coffee/issues"
},
"homepage": "https://github.com/Cirru/parser.coffee"
}