forked from acquia/waterwheel.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.44 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "waterwheel",
"version": "0.6.6",
"description": "A generic JavaScript helper library to query and manipulate Drupal 8 via core REST",
"author": "Preston So <[email protected]>",
"contributors": [
{
"name": "Matthew Grill",
"email": "[email protected]"
}
],
"license": "MIT",
"url": "https://github.com/acquia/waterwheel",
"main": "lib/waterwheel.js",
"scripts": {
"build": "webpack --progress",
"test": "nyc --reporter=html ava -v && nyc report",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ."
},
"keywords": [
"drupal",
"rest",
"api",
"cms",
"waterwheel"
],
"dependencies": {
"axios": "^0.11.0",
"drupal-api": "^0.0.3"
},
"devDependencies": {
"ava": "^0.15.1",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"browserify": "^13.0.0",
"coveralls": "^2.11.9",
"eslint": "^2.9.0",
"expose-loader": "^0.7.1",
"nightmare": "^2.5.2",
"nyc": "^6.4.4",
"require-subvert": "^0.1.0",
"webpack": "^1.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/acquia/waterwheel.git"
},
"engines": {
"node": "~6.0.0",
"npm": "~3.8.6"
},
"ava": {
"files": [
"test/*.js"
]
},
"nyc": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100,
"report-dir": "./coverage"
}
}