-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.79 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.79 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
58
{
"name": "cloud-inventory",
"version": "0.3.1",
"description": "Cloud Inventory",
"main": "build/main.js",
"private": true,
"scripts": {
"build": "babel -D src -d build",
"build:dev": "babel -D --watch src --out-dir build",
"clean": "rm -rf build",
"coverage": "cross-env NODE_ENV=test nyc mocha tests/*.test.js",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"preversion": "npm run lint && npm run test",
"start:dev": "nodemon --watch src --exec babel-node ./src/main.js",
"start": "node ./build/main.js",
"test": "NODE_ENV=test mocha --recursive tests/*.test.js",
"ver": "echo $npm_package_version",
"name": "echo $npm_package_name"
},
"author": "Michele <michele@fluidware.it> (macno)",
"license": "UNLICENSED",
"dependencies": {
"@authkeys/microservice": "^2.4.2",
"body-parser": "^1.19.0",
"dotenv": "^6.2.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@istanbuljs/nyc-config-babel": "^2.1.1",
"babel-eslint": "^10.0.2",
"babel-plugin-istanbul": "^5.1.4",
"cross-env": "^5.2.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"event-stream": "3.3.4",
"mocha": "^6.0.2",
"mock-http-server": "^1.4.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"sinon": "^7.4.2"
},
"optionalDependencies": {
"nodemon": "^1.19.0"
}
}