-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.75 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
{
"name": "videojs-generate-postcss-config",
"version": "3.0.1",
"description": "Generate a standard postcss config, so that plugins don't need the same script in every repository.",
"main": "index.js",
"scripts": {
"lint": "vjsstandard",
"test": "npm run test:unit && npm run test:verify",
"test:unit": "npm run lint",
"test:verify": "vjsverify --skip-es-check --verbose",
"preversion": "npm test",
"version": "is-prerelease || npm run update-changelog && git add CHANGELOG.md",
"update-changelog": "conventional-changelog -p videojs -i CHANGELOG.md -s",
"prepublishOnly": "npm run test:verify"
},
"lint-staged": {
"*.js": [
"vjsstandard --fix",
"git add"
],
"README.md": [
"doctoc",
"git add"
]
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/videojs/videojs-generate-postcss-config"
},
"author": "Brandon Casey <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/videojs/videojs-generate-postcss-config/issues"
},
"homepage": "https://github.com/videojs/videojs-generate-postcss-config",
"peerDependencies": {
"postcss": "^8.4.24",
"postcss-cli": "^8.3.1"
},
"dependencies": {
"autoprefixer": "^10.4.14",
"postcss-banner": "^3.0.2",
"postcss-calc": "^7.0.5",
"postcss-csso": "^5.0.1",
"postcss-custom-properties": "^10.0.0",
"postcss-import": "^13.0.0",
"postcss-nested": "^5.0.6",
"postcss-nesting": "^7.0.1",
"postcss-progress": "^2.0.0"
},
"devDependencies": {
"@videojs/generator-helpers": "^1.2.0",
"videojs-generator-verify": "~1.2.0",
"videojs-standard": "^8.0.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}