forked from idmitriev/rollup-plugin-ramda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "@flybondi/rollup-plugin-ramda",
"version": "1.1.1",
"description": "Removes unused ramda dependencies",
"license": "MIT",
"dependencies": {
"acorn": "^6.1.1",
"magic-string": "^0.25.2",
"ramda": "^0.26.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^2.3.3",
"prettier": "^1.17.0",
"rollup": "^1.11.3",
"rollup-plugin-buble": "^0.19.6"
},
"files": [
"src",
"dist",
"README.md"
],
"main": "dist/rollup-plugin-ramda.cjs.js",
"jsnext:main": "dist/rollup-plugin-ramda.js",
"scripts": {
"test": "mocha",
"pretest": "yarn build",
"build": "rollup -c -f cjs -o dist/rollup-plugin-ramda.cjs.js && rollup -c -f es -o dist/rollup-plugin-ramda.js",
"prebuild": "rm -rf dist/*",
"prepublish": "yarn test",
"lint": "eslint src/ test/"
},
"author": "Flybondi <dev@flybondi.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/flybondi/rollup-plugin-ramda.git"
},
"keywords": [
"rollup",
"rollup-plugin",
"es2015",
"modules",
"ramda"
]
}