-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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
{
"name": "rollup-plugin-named-directory",
"version": "1.0.1",
"description": "Resolves modules to its directory names",
"main": "dist/named-directory.cjs.js",
"module": "dist/named-directory.es.js",
"scripts": {
"build": "rollup -c",
"build:example": "rollup -c ./rollup.config.example.js",
"format": "prettier-eslint --print-width 80 --write \"**/*.js\"",
"lint": "eslint . --fix",
"pretest": "npm run lint",
"test": "cross-env NODE_ENV=test jest",
"precommit": "lint-staged",
"prepush": "npm test",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/frostney/rollup-plugin-named-directory.git"
},
"keywords": [
"rollup",
"plugin",
"named",
"directory",
"rollup-plugin"
],
"author": "Johannes Stein",
"license": "MIT",
"bugs": {
"url": "https://github.com/frostney/rollup-plugin-named-directory/issues"
},
"homepage": "https://github.com/frostney/rollup-plugin-named-directory#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.0.4",
"prettier-eslint-cli": "^4.7.1",
"regenerator-runtime": "^0.11.1",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3"
},
"lint-staged": {
"*.js": [
"prettier-eslint --print-width 80 --write",
"eslint --fix",
"git add"
]
}
}