-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.61 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
{
"name": "json-api-response-converter",
"version": "1.6.0",
"main": "dist/json-api-response-converter.umd.js",
"module": "dist/json-api-response-converter.es.js",
"unpkg": "dist/json-api-response-converter.min.js",
"repository": "[email protected]:guillaumebriday/json-api-response-converter.git",
"author": "Guillaume Briday <[email protected]>",
"homepage": "https://github.com/guillaumebriday/json-api-response-converter",
"license": "MIT",
"husky": {
"hooks": {
"pre-push": "yarn lint && yarn test"
}
},
"scripts": {
"lint": "eslint --ext .js --ignore-path .gitignore .",
"test": "BABEL_ENV=test jest",
"build:browser": "rollup -c build/rollup.config.browser.js",
"build:es": "rollup -c build/rollup.config.es.js",
"build:umd": "rollup -c build/rollup.config.umd.js",
"build": "yarn build:browser && yarn build:es && yarn build:umd",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@types/jest": "^24.0.18",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.9.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"husky": "^3.0.7",
"jest": "^24.9.0",
"rollup": "^1.26.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2"
}
}