This repository was archived by the owner on Mar 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 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
59
60
61
{
"name": "nodejs-wp-rest-api",
"version": "1.0.0",
"description": "Create a interface to intercept requests for WP REST API.",
"main": "src",
"scripts": {
"start": "node .",
"test": "jest",
"dev": "nodemon -i \"*.test.js\" .",
"prod": "cross-env NODE_ENV=production nodemon -i \"*.test.js\" -r dotenv-safe/config .",
"lint": "eslint src",
"docs": "apidoc -i src -o docs && apidoc-markdown -p docs -o DOCS.md"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Apiki/nodejs-wp-rest-api.git"
},
"keywords": [
"nodejs",
"wp",
"rest",
"api"
],
"author": "Apiki",
"license": "MIT",
"bugs": {
"url": "https://github.com/Apiki/nodejs-wp-rest-api/issues"
},
"homepage": "https://github.com/Apiki/nodejs-wp-rest-api#readme",
"dependencies": {
"async-redis": "^1.1.4",
"axios": "^0.18.1",
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-runtime": "^6.26.0",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-force-ssl": "^0.3.2",
"morgan": "^1.9.1"
},
"devDependencies": {
"apidoc": "^0.17.6",
"apidoc-markdown": "^0.2.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"cross-env": "^5.2.0",
"dotenv-safe": "^6.0.0",
"eslint": "^5.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"jest-cli": "^23.4.2",
"nodemon": "^1.18.3"
}
}