-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 1.93 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "scss-7-in-1",
"description": "Generates SASS - 7 in 1 architecture (https://sass-guidelin.es/#the-7-1-pattern) quickly in your current directory.",
"version": "1.1.2",
"author": "Dharmen Shah",
"bin": {
"scss-7-in-1": "./bin/run"
},
"bugs": "https://github.com/shhdharmen/scss-7-in-1/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-autocomplete": "^0.1.4",
"@oclif/plugin-help": "^2",
"@oclif/plugin-not-found": "^1.2.3",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"@types/require-dir": "^1.0.0",
"chalk": "^2.4.2",
"listr": "^0.14.3",
"ncp": "^2.0.0",
"node-emoji": "^1.10.0",
"require-dir": "^1.2.0",
"tslib": "^1"
},
"devDependencies": {
"@oclif/test": "^1",
"@oclif/tslint": "^3",
"@types/chai": "^4",
"@types/cli-spinners": "^1.3.0",
"@types/listr": "^0.14.2",
"@types/mocha": "^5",
"@types/ncp": "^2.0.3",
"@types/node": "^12.12.5",
"@types/node-emoji": "^1.8.1",
"chai": "^4",
"mocha": "^5",
"nyc": "^14",
"rimraf": "^3.0.0",
"ts-node": "^8",
"tslint": "^5",
"typescript": "^3.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/src/content"
],
"homepage": "https://github.com/shhdharmen/scss-7-in-1",
"keywords": [
"scss",
"css",
"scss-architecture",
"7-in-1"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "scss-7-in-1",
"plugins": [
"@oclif/plugin-not-found",
"@oclif/plugin-warn-if-update-available",
"@oclif/plugin-autocomplete"
]
},
"repository": {
"type": "git",
"url": "https://github.com/shhdharmen/scss-7-in-1.git"
},
"scripts": {
"posttest": "tslint -p test -t stylish",
"prepack": "rimraf lib && tsc -b",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"types": "lib/index.d.ts"
}