-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "@unibeautify/beautifier-csscomb",
"version": "0.1.0",
"description": "CSScomb beautifier for Unibeautify",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run clean && npm run compile",
"clean": "rimraf dist",
"compile": "tsc",
"jest": "jest",
"test": "npm run build && npm run lint && npm run jest",
"lint": "tslint '{src,test}/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/Unibeautify/beautifier-csscomb.git"
},
"keywords": [
"csscomb", "unibeautify", "beautifier"
],
"author": "Glavin Wiechert",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/Unibeautify/beautifier-csscomb/issues"
},
"homepage": "/~https://github.com/Unibeautify/beautifier-csscomb#readme",
"peerDependencies": {
"unibeautify": ">= 0.12.1",
"csscomb": "4.3.0"
},
"devDependencies": {
"@types/cosmiconfig": "5.0.3",
"@types/jest": "24.9.1",
"@types/node": "12.12.31",
"jest": "24.9.0",
"rimraf": "3.0.2",
"ts-jest": "24.3.0",
"tslint": "5.20.1",
"tslint-clean-code": "0.2.10",
"tslint-microsoft-contrib": "6.2.0",
"typescript": "3.9.6",
"unibeautify": "0.17.1",
"csscomb": "4.3.0"
},
"dependencies": {
"read-pkg-up": "^7.0.0",
"cosmiconfig": "5.2.1"
}
}