-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "auto-comment-bracket",
"version": "1.1.6",
"description": "Add comments to closing CSS brackets to distinguish what is actually closing. Nested selectors in SCSS can be multiple levels deep which makes it hard to figure out what the parent selector is.",
"main": "./dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"dev": "tsc -w",
"prepare": "npm run build",
"build": "rm -rf dist && tsc",
"test": "npm run build && ts-mocha ./test/test.ts"
},
"keywords": [
"css",
"scss",
"developer-tools",
"bracket",
"brackets",
"mark-closing-brackets"
],
"bin": {
"auto-comment-bracket": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Richard1320/Auto-Comment-Bracket.git"
},
"author": "Richard Hung <[email protected]> (http://www.magicmediamuse.com)",
"license": "ISC",
"dependencies": {
"commander": "^6.2.0"
},
"devDependencies": {
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.9",
"mocha": "^8.2.1",
"ts-mocha": "^8.0.0",
"typescript": "^4.1.2"
}
}