This repository has been archived by the owner on Jul 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.2 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
{
"name": "rollup-plugin-cpy",
"version": "1.1.0",
"description": "rollup plugin to easily copy files and folders.",
"main": "dist/rollup-plugin-cpy.cjs.js",
"module": "dist/rollup-plugin-cpy.es.js",
"jsnext:main": "dist/rollup-plugin-cpy.es.js",
"files": [
"dist"
],
"keywords": [
"rollup copy",
"rollup plugin copy"
],
"repository": {
"type": "git",
"url": "git+https://github.com/shrynx/rollup-plugin-cpy.git"
},
"bugs": {
"url": "https://github.com/shrynx/rollup-plugin-cpy/issues"
},
"homepage": "https://github.com/shrynx/rollup-plugin-cpy#readme",
"author": "Shriyans Bhatnagar <shriyansbhatnagar@gmail.com>",
"license": "MIT",
"scripts": {
"lint": "eslint 'src/**/*.js'",
"format": "prettier-eslint --write 'src/**/*.js' '*.md'",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"commitmsg": "commitlint -e",
"clean": "rimraf dist",
"build": "npm run clean && rollup -c",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"src/**/*.js": [
"eslint",
"prettier-eslint --write",
"git add"
],
"*.md": [
"prettier-eslint --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.18.2",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.15.0-rc.8",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"prettier-eslint-cli": "^4.7.1",
"rimraf": "^2.6.2",
"rollup": "^0.57.1",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-json": "^2.3.0"
},
"dependencies": {
"chalk": "^2.3.2",
"cpy": "^7.0.1",
"lodash.isobject": "^3.0.2",
"mkdirp": "^0.5.1"
}
}