-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (37 loc) · 1.07 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
{
"name": "lc-cssparser",
"version": "1.0.2",
"description": "一个简单的CSS解析器,可以将文本CSS转义为对象格式,并组支持合并简写样式",
"main": "lib/index.js",
"scripts": {
"dev": "ts-node -r tsconfig-paths/register ./src/index.ts",
"build": "rollup -c",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyomic/cssparser.git"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"rollup": "^4.13.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.36.0",
"terser": "^5.29.2",
"ts-jest": "^29.1.2",
"tsconfig-paths": "^3.12.0",
"typescript": "^5.4.3"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kyomic/cssparser/issues"
},
"homepage": "https://github.com/kyomic/cssparser#readme"
}