forked from carlobeltrame/hal-json-normalizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
{
"name": "hal-json-normalizer",
"version": "3.0.0",
"description": "HAL JSON API response normalizer",
"main": "dist/bundle.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack -p",
"clean": "cross-env rimraf dist coverage lib",
"coverage": "cross-env nyc --reporter=lcov npm run test",
"lint": "cross-env eslint src --ext .js",
"test": "cross-env npm run build && mocha --require @babel/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carlobeltrame/hal-json-normalizer.git"
},
"keywords": [
"HAL",
"JSON",
"API",
"normalize",
"Vuex"
],
"author": "Carlo Beltrame",
"license": "MIT",
"bugs": {
"url": "https://github.com/carlobeltrame/hal-json-normalizer/issues"
},
"homepage": "https://github.com/carlobeltrame/hal-json-normalizer#readme",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/register": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"cross-env": "^6.0.3",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.19.1",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"rimraf": "^3.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"lodash": "^4.17.15"
}
}