-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.43 KB
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
{
"author": "Bing Steup",
"name": "map-array-response",
"version": "0.1.1",
"description": "Map array responses on an object field",
"main": "dist/map-array-response.js",
"scripts": {
"test": "jest --env=jsdom",
"test:coveralls": "yarn test --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:full": "yarn prettier:check && yarn lint && yarn test:coveralls",
"prettier:check": "prettier --check 'src/**/*.js'",
"prettier:fix": "prettier --write src/**/*.js",
"lint": "eslint --ext .js .",
"lint:fix": "yarn lint --fix",
"build": "yarn babel src/index.js -o dist/map-array-response.js"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^22.0.4",
"babel-plugin-rewire": "^1.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"coveralls": "^3.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.7.1",
"prettier": "^1.17.0",
"rewire": "^3.0.2"
},
"keywords": [
"NodeJS"
],
"license": "MIT",
"publishConfig": {
"access": "public"
}
}