-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.25 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
{
"name": "join-includes",
"version": "0.0.4",
"description": "Function for re-treeing JSON API formatted payloads.",
"main": "dist/join-includes.js",
"scripts": {
"lint": "./node_modules/.bin/eslint src",
"test": "jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"build": "./node_modules/.bin/webpack --config webpack.build.js",
"watch": "./node_modules/.bin/webpack --config webpack.dev.js --watch",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bor3ham/join-includes.git"
},
"keywords": [
"join",
"includes",
"json",
"api",
"retree"
],
"author": "Michael Boreham",
"license": "MIT",
"bugs": {
"url": "https://github.com/bor3ham/join-includes/issues"
},
"homepage": "https://github.com/bor3ham/join-includes#readme",
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"dependencies": {}
}