forked from WP-API/node-wpapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.61 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.61 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"author": {
"name": "K.Adam White",
"url": "http://www.kadamwhite.com"
},
"name": "wpapi",
"version": "1.0.3",
"description": "An isomorphic JavaScript client for interacting with the WordPress REST API",
"main": "wpapi.js",
"repository": {
"type": "git",
"url": "https://github.com/wp-api/node-wpapi.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/wp-api/node-wpapi/issues"
},
"homepage": "https://github.com/wp-api/node-wpapi",
"keywords": [
"api",
"client",
"cms",
"wordpress"
],
"scripts": {
"build": "webpack && webpack --config webpack.config.minified.js",
"zip": "npm run build && grunt zip",
"update-default-routes-json": "node ./lib/data/update-default-routes-json",
"docs": "grunt docs",
"jekyll": "node bin/jekyll",
"release-docs": "node build/scripts/release-docs",
"release-npm": "npm run build && npm test && npm publish",
"jshint": "jshint --reporter=node_modules/jshint-stylish/index.js Gruntfile.js wpapi.js bin build lib tests",
"jscs": "jscs Gruntfile.js wpapi.js bin build lib tests --reporter node_modules/jscs-stylish/jscs-stylish.js",
"lint": "npm run jshint && npm run jscs || true",
"mocha": "_mocha tests --recursive --reporter=nyan",
"watch": "grunt watch",
"test:all": "_mocha tests --recursive --reporter=nyan",
"test:unit": "_mocha tests/unit --recursive --reporter=nyan",
"test:integration": "_mocha tests/integration --recursive --reporter=nyan",
"test:ci": "npm run lint && istanbul cover _mocha -- tests/unit --recursive --reporter=list",
"pretest": "npm run lint",
"test": "istanbul cover _mocha -- tests --recursive --reporter=nyan"
},
"dependencies": {
"es6-promise": "^3.2.1",
"li": "^1.0.1",
"lodash.uniq": "^4.3.0",
"node.extend": "^1.1.5",
"parse-link-header": "^0.4.1",
"qs": "^6.2.0",
"route-parser": "0.0.4",
"superagent": "^3.3.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"combyne": "^2.0.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-yuidoc": "^1.0.0",
"grunt-zip": "^0.17.1",
"istanbul": "^0.4.4",
"jscs": "^3.0.6",
"jscs-stylish": "^0.3.1",
"jshint": "^2.9.2",
"jshint-stylish": "^2.2.0",
"json-loader": "^0.5.4",
"kramed": "^0.5.6",
"load-grunt-tasks": "^3.5.0",
"lodash.reduce": "^4.6.0",
"minimist": "^1.2.0",
"mocha": "^2.5.3",
"prompt": "^1.0.0",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"webpack": "^1.13.1"
}
}