forked from rollup/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.05 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
{
"name": "@rollup/plugins",
"private": true,
"scripts": {
"ci:coverage": "node scripts/run-changed.js ci:coverage",
"ci:coverage:submit": "node scripts/codecov",
"ci:lint": "node scripts/run-changed.js ci:lint",
"ci:test": "node scripts/run-changed.js ci:test",
"lint": "pnpm run lint:docs && pnpm run lint:package && node scripts/run-changed.js lint",
"lint:docs": "prettier --write README.md",
"lint:js": "eslint scripts util",
"lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
"preinstall": "node scripts/disallow-npm.js",
"pub": "node scripts/pub.js",
"publish": "node scripts/publish.js",
"security": "pnpm audit",
"test": "node scripts/run-changed.js test"
},
"dependencies": {
"conventional-commits-parser": "^3.0.8",
"semver": "^7.1.1",
"write-pkg": "^4.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"ava": "^2.4.0",
"chalk": "^2.4.2",
"codecov-lite": "^0.3.1",
"del-cli": "^3.0.0",
"eslint-config-rollup": "^0.1.0",
"execa": "^2.1.0",
"globby": "^10.0.1",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"nyc": "^14.1.1",
"pnpm": "^4.6.0",
"prettier": "^1.19.1",
"prettier-plugin-package": "^0.3.1",
"rollup": "^1.27.14",
"ts-node": "^8.5.4",
"tsconfig-paths": "^3.9.0",
"tslib": "^1.10.0",
"typescript": "^3.7.4",
"yaml": "^1.7.2"
},
"ava": {
"files": [
"!**/fixtures/**",
"!**/helpers/**",
"!**/recipes/**",
"!**/types.ts"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js,*.ts": [
"eslint --fix",
"git add"
],
"*.md": [
"prettier --single-quote --write",
"git add"
],
"*package.json": [
"prettier --write --plugin=prettier-plugin-package",
"git add"
]
},
"nyc": {
"include": [
"lib/**/*.js"
],
"exclude": [
"lib/client*.js",
"test/"
]
}
}