-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.94 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
{
"name": "post-sequence",
"version": "0.3.0",
"description": "A sequence for configuration posthtml and postcss plugins",
"license": "MIT",
"repository": "scrum/post-sequence",
"homepage": "https://scrum/post-sequence#readme",
"bugs": "scrum/post-sequence/issues",
"author": {
"name": "Ivan Demidov",
"email": "[email protected]",
"url": "https://twitter.com/Scrum_"
},
"main": "lib/index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"version": "conventional-changelog -i changelog.md -s -r 0 && git commit -am \"build: update changelog\"",
"prepare": "npm run build",
"build": "rimraf lib && babel src -d lib",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "nyc ava",
"lint": "eslint {src,test}/*.js *.md --fix",
"pretest": "clinton && npm run lint"
},
"files": [
"lib/"
],
"keywords": [
"post",
"HTML",
"CSS",
"PostHTML",
"PostCSS",
"Package",
"Plugins",
"Config",
"Sequence",
"Orders",
"Namespace"
],
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-angular": "^8.0.0",
"ava": "*",
"babel-eslint": "^10.0.1",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-minify": "^0.5.0",
"clinton": "^0.14.0",
"conventional-changelog-cli": "^2.0.21",
"coveralls": "^3.0.4",
"eslint": "^6.2.0",
"eslint-config-xo": "^0.26.0",
"eslint-config-xo-space": "^0.21.0",
"eslint-plugin-ava": "^8.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-unicorn": "^10.0.0",
"husky": "^3.0.4",
"lint-staged": "^9.2.3",
"nyc": "^14.1.1",
"rimraf": "^3.0.0"
},
"ava": {
"require": [
"@babel/register"
]
}
}