-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.63 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.63 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@fizzmod/utils",
"description": "Utitities functions and validations",
"version": "1.3.0",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@fizzmod/eslint-config": "^2.0.1",
"babel-core": "^7.0.0-beta.3",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"expect.js": "^0.3.1",
"jsdoc": "^3.5.5",
"jsdom": "^15.1.1",
"mocha": "^6.1.4",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"prettier": "^1.17.1",
"rollup": "^1.12.5",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-json": "^4.0.0",
"sinon": "^7.3.2"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "mocha",
"lint": "eslint .",
"coverage-report": "nyc --reporter=html npm test",
"coverage": "nyc npm run test",
"pretest": "npm run build",
"prepack": "npm run test",
"jsdoc": "jsdoc -c ./jsdoc.conf.json -r && google-chrome ./out/index.html",
"postuninstall": "npm-install-peers",
"postinstall": "npm-install-peers"
},
"files": [
"dist"
],
"peerDependencies": {
"axios": "^0.18.0",
"@babel/runtime": "^7.4.5"
}
}