-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 980 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 980 Bytes
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
{
"name": "@yeap/light-css-parser",
"version": "1.0.0",
"description": "The light css parser for Yeap",
"main": "./build/lib.js",
"types": "./build/lib.d.ts",
"type": "module",
"files": [
"build/**/*",
"README.md"
],
"scripts": {
"test": "vitest",
"coverage": "vitest --coverage",
"dev": "tsc --watch",
"build": "tsc",
"format": "prettier -w ./src ./tests",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yeapjs/css-light-parser.git"
},
"keywords": [
"yeap",
"front-end",
"css",
"parser"
],
"author": "hanako-eo",
"license": "MIT",
"bugs": {
"url": "https://github.com/yeapjs/css-light-parser/issues"
},
"homepage": "https://github.com/yeapjs/css-light-parser#readme",
"devDependencies": {
"@vitest/coverage-v8": "^0.34.6",
"prettier": "^3.1.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}