-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.15 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
{
"name": "css-namespace",
"description": "This utility takes a css file (input) and prefixes (namespaces) the css rules with a predefined selector",
"version": "1.0.6",
"author": "Kieran Crown <[email protected]>",
"main": "dist/index.js",
"bin": {
"css-namespace": "dist/index.js"
},
"license": "MIT",
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/kierancrown/css-namespace"
},
"dependencies": {
"command-line-args": "^5.2.1",
"css": "^3.0.0"
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/css": "^0.0.33",
"@types/node": "14.14.31",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"tsc-watch": "^4.4.0",
"typescript": "^4.3.5"
}
}