-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.74 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.74 KB
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
{
"name": "autostyles",
"version": "1.1.9",
"description": "Transforms css into automatic style guides.",
"license": "MIT",
"bin": {
"buildguide": "./bin/buildguide"
},
"files": [
"bin/",
"src/templates/",
"src/app",
"src/*.js"
],
"main": "src/index.js",
"module": "./src/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://techmsi@github.com/techmsi/autostyles.git"
},
"author": "techmsi",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"pretest:ci": "echo 'PRETEST' && greenkeeper-lockfile-update",
"posttest:ci": "echo 'POSTTEST' && greenkeeper-lockfile-upload",
"precz": "npm run format && npm test",
"cz": "git-cz",
"format": "semistandard --fix",
"lint": "semistandard --verbose | snazzy || echo 'Please fix the linting errors.'",
"module-size": "du -sh ./node_modules/* | sort -nr | grep M",
"test": "jest --coverage",
"test:ci": "jest --coverage --ci --runInBand",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"css",
"styleguide"
],
"dependencies": {
"directory-tree": "^2.2.4",
"esm": "*",
"fs-extra": "^8.x",
"mensch": "*",
"mustache": "^4.x",
"prompts": "^2.x",
"tiny-chalk": "*"
},
"devDependencies": {
"chai": "*",
"chai-fs": "*",
"commitizen": "*",
"coveralls": "*",
"cz-conventional-changelog": "*",
"greenkeeper-lockfile": "^1.x",
"jest": "*",
"jest-junit": "*",
"mock-stdin": "^1.0.0",
"semistandard": "*",
"snazzy": "*"
},
"semistandard": {
"env": [
"jest"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}