-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
51 lines (51 loc) · 1.26 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
{
"name": "js-ziju",
"version": "0.0.1",
"description": "simple scss compiler",
"main": "index.ts",
"scripts": {
"test": "jest",
"example": "node -v && node -r ts-node/register example/index.ts",
"asm": "node --print-bytecode example/asm.js",
"jest": "jest"
},
"engines": {
"node": ">=12.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wizardpisces/js-ziju.git"
},
"keywords": [
"js",
"compiler",
"ast"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/wizardpisces/js-ziju/issues"
},
"homepage": "https://github.com/wizardpisces/js-ziju#readme",
"devDependencies": {
"@microsoft/api-extractor": "^7.9.11",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@types/jest": "^26.0.0",
"brotli": "^1.3.2",
"jest": "^26.6.3",
"rollup": "^2.26.11",
"rollup-plugin-terser": "^7.0.1",
"rollup-plugin-typescript2": "^0.27.2",
"ts-jest": "^26.5.4",
"ts-node": "^9.0.0",
"tslib": "^2.0.0",
"typescript": "^3.8.3"
},
"dependencies": {
"acorn": "^8.0.4",
"estree-walker": "^2.0.2"
}
}