-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.17 KB
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": "@timkit/css-parser",
"version": "1.0.0",
"description": "A high-performance, character-by-character CSS parser that converts CSS to JavaScript objects and vice versa",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"example": "ts-node src/example.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"css",
"parser",
"stringifier",
"css-in-js",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/timkit-dev/css-parser.git"
},
"bugs": {
"url": "https://github.com/timkit-dev/css-parser/issues"
},
"homepage": "https://github.com/timkit-dev/css-parser#readme",
"author": "timkit.dev",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"publishConfig": {
"access": "public"
}
}