-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.21 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
{
"name": "rollup-plugin-concatfiles",
"version": "1.0.2",
"description": "rollup plugin for concatenation purpose",
"main": "index.js",
"eslintConfig": {
"env": {
"browser": true,
"node": true
}
},
"scripts": {
"test": "jest",
"build": "rollup -c rollup.config.js",
"lint": "eslint",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand"
},
"husky": {
"hooks": {
"pre-push": "eslint '**/*.js'"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/kpulkit29/rollup-plugin-concatfiles.git"
},
"author": "Udit , Pulkit",
"license": "MIT",
"bugs": {
"url": "https://github.com/kpulkit29/rollup-plugin-concatfiles/issues"
},
"homepage": "https://github.com/kpulkit29/rollup-plugin-concatfiles#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-jest": "^24.0.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"fs-extra": "^9.0.0",
"husky": "^4.2.4",
"jest": "^25.3.0"
},
"dependencies": {
"rollup": "^2.3.2"
},
"keywords": [
"Rollup",
"Rollup-Plugin",
"Rollup-Plugin-concat",
"Rollup-Plugin-concatFiles"
]
}