This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.33 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@asset-pipe/css-writer",
"version": "0.0.0-development",
"author": "Richard Walker <[email protected]>",
"description": "CSS asset feed writer",
"main": "./lib/writer.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/asset-pipe/asset-pipe-css-writer"
},
"keywords": [
"css",
"assets"
],
"contributors": [
"Richard Walker <[email protected]>",
"Richard Walker (https://github.com/digitalsadhu)",
"Simen Bekkhus (https://github.com/SimenB)",
"greenkeeper[bot] (http://github.com/apps/greenkeeper)"
],
"bugs": {
"url": "https://github.com/asset-pipe/asset-pipe-css-writer/issues"
},
"license": "MIT",
"dependencies": {
"@asset-pipe/common": "^3.0.1",
"postcss": "^7.0.14",
"postcss-import": "^12.0.1",
"read-pkg-up": "^4.0.0"
},
"devDependencies": {
"commitizen": "^3.0.7",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^5.15.1",
"eslint-config-finn": "^3.0.1",
"eslint-config-finn-prettier": "^3.0.2",
"eslint-plugin-import": "^2.16.0",
"husky": "^1.3.1",
"jest": "^24.5.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"projectz": "^1.7.4",
"semantic-release": "^15.13.3",
"travis-deploy-once": "^5.0.11"
},
"scripts": {
"format": "prettier --write --single-quote --trailing-comma=all --tab-width=4 lib/**/*.js test/**/*.js README.md",
"lint": "eslint .",
"test": "jest --coverage",
"lint:format": "eslint --fix .",
"precommit": "lint-staged",
"cm": "git-cz",
"readme": "projectz compile",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"files": [
"lib"
],
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"clearMocks": true
},
"lint-staged": {
"*.js": [
"eslint --fix --config ./.eslintrc",
"git add"
],
"{package.json,README.md,LICENSE.md}": [
"projectz compile",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"badges": {
"list": [
"travisci",
"npmversion",
"daviddm",
"daviddmdev"
]
},
"maintainers": []
}