-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.4 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
{
"name": "hal-http-client",
"version": "0.12.1",
"description": "A status code driven JSON HAL HTTP client based on the fetch API.",
"main": "dist/hal-http-client.js",
"scripts": {
"test": "jasmine",
"test-watch": "watch \"npm test\" . --interval=1 -p /node_modules/",
"prepublish": "npm run dist",
"apidoc": "laxar-dox -d docs/api hal-http-client.js",
"dist": "babel hal-http-client.js -d dist --source-maps"
},
"repository": {
"type": "git",
"url": "https://github.com/aixigo/hal-http-client.git"
},
"homepage": "https://github.com/aixigo/hal-http-client",
"bugs": "https://github.com/aixigo/hal-http-client/issues",
"keywords": [
"fetch",
"hal",
"http",
"hypermedia",
"json",
"rest"
],
"author": "Alexander Wilden <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.0",
"babel-plugin-transform-object-rest-spread": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-es2016": "^6.24.0",
"babel-preset-es2017": "^6.24.0",
"eslint": "^4.18.2",
"eslint-config-laxarjs": "^0.3.0",
"fetch-mock": "^5.9.3",
"jasmine-es6": "^0.4.0",
"laxar-dox": "^2.1.1",
"watch": "^1.0.1"
},
"dependencies": {
"url-template": "^2.0.8"
}
}