-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.73 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "cirru-script",
"version": "0.6.2",
"description": "Generated JavaScript from Cirru Grammar",
"main": "lib/compiler.js",
"scripts": {
"clean": "rm -rfv dist/*",
"watch": "yarn html && webpack-dev-server --config webpack.dev.cirru",
"release": "yarn clean && webpack --config webpack.release.cirru && yarn release-html && cp -rv examples dist/",
"html": "cirruscript template.cirru",
"release-html": "env=release cirruscript template.cirru",
"up": "yarn release && tiye-up",
"compile": "coffee -o lib/ -bc src/",
"prepare": "yarn compile",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "jiyinyiyong",
"license": "MIT",
"keywords": [
"cirru",
"javascript"
],
"devDependencies": {
"assets-webpack-plugin": "^3.9.10",
"babel-preset-stage-2": "^6.24.1",
"cirru-script": "^0.6.1",
"coffee-loader": "^0.9.0",
"coffeescript": "^2.5.0",
"css-loader": "^3.4.2",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"file-loader": "^5.0.2",
"http-server": "^0.12.1",
"stir-template": "^0.2.2",
"style-loader": "^1.1.3",
"webpack": "^4.41.5",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-hud": "^0.1.2"
},
"dependencies": {
"@babel/generator": "^7.8.3",
"@cirru/parser.ts": "^0.0.1",
"chalk": "^3.0.0",
"clipboardy": "^2.1.0",
"scirpus": "^0.6.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Cirru/cirru-script.git"
},
"bugs": {
"url": "https://github.com/Cirru/cirru-script/issues"
},
"bin": {
"cirruscript": "./bin/cirruscript.js"
},
"homepage": "https://github.com/Cirru/cirru-script"
}