-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1020 Bytes
/
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
{
"name": "csslusterfuck",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"bin": {
"csslusterfuck": "lib/cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"csslusterfuck": "node ./lib/cli.js",
"csslusterfuck:dev": "ts-node ./src/cli.ts",
"build:tsc": "tsc",
"build": "npm run build:tsc",
"clean": "bash -c \"rm -r ./lib\""
},
"keywords": [],
"author": "",
"license": "MIT",
"prettier": {
"singleQuote": true,
"bracketSpacing": false,
"semi": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/lodash": "^4.14.80",
"@types/node": "^8.0.47",
"fs-dot": "^4.0.2",
"npm-runtools": "^1.0.1",
"prettier": "^1.7.4",
"sass-lint": "^1.12.1",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typescript": "^2.5.3"
},
"dependencies": {
"args": "^3.0.7",
"lodash": "^4.17.4",
"multi-glob": "^1.0.1",
"postcss": "^6.0.13",
"postcss-scss": "^1.0.2"
}
}