-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
{
"name": "lemonj",
"version": "0.2.0",
"description": "CSS/LESS/CSS Auto Refactor",
"main": "dist/index.js",
"bin": "dist/cli.js",
"scripts": {
"test": "jest --clearCache; jest",
"build": "node build.js",
"less-grammar": "antlr4ts -visitor lang/*",
"antlr4ts": "antlr4ts -visitor lang/LessLexer.g4",
"run:exec": "npm run build && node dist/cli.js analysis _fixtures",
"run:refactor": "npm run build && node dist/cli.js refactor _fixtures"
},
"dependencies": {
"antlr4ts": "^0.5.0-alpha.3"
},
"devDependencies": {
"@types/chroma-js": "^2.1.2",
"@types/commander": "^2.12.2",
"@types/jest": "^26.0.15",
"antlr4ts-cli": "^0.5.0-alpha.3",
"assert": "^2.0.0",
"chroma": "0.0.1",
"chroma-js": "^2.1.0",
"commander": "^6.2.0",
"esbuild": "^0.8.8",
"esbuild-jest-transform": "^1.0.4",
"jest": "^26.6.3",
"prettier": "^2.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twfe/lemonj.git"
},
"contributors": [
{
"name": "Phodal",
"email": "[email protected]",
"url": "https://www.phodal.com/"
},
{
"name": "LiuuY",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/twfe/lemonj/issues"
},
"homepage": "https://github.com/twfe/lemonj#readme",
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
}
}