-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.23 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
57
58
{
"name": "style-bridge",
"version": "1.0.0",
"description": "A CSS-to-JSObject converter based on postcss-js",
"main": "dist/index.js",
"type": "commonjs",
"scripts": {
"test": "eslint src && ava",
"build": "tsc -b",
"clean": "tsc -b --clean"
},
"keywords": [
"CSS-to-JS",
"JSS",
"convert",
"css",
"style",
"postcss-js",
"object"
],
"author": {
"name": "Attila Max Ruf",
"email": "therufa@gmail.com",
"url": "https://ruf.hu/"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^18.15.0",
"@types/postcss-js": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"ava": "^5.2.0",
"eslint": "^8.36.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"css-what": "^6.1.0",
"postcss": "^8.4.21",
"postcss-js": "^4.0.1"
},
"sideEffects": "false",
"ava": {
"files": [
"test/*.ts"
],
"extensions": {
"ts": "commonjs"
},
"require": [
"ts-node/register"
]
}
}