-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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
{
"name": "rest-linked",
"version": "1.0.4",
"description": "A prototype suporting REST based linked data in js-data, without requiring all facets of JSON-API.",
"main": "dist/rest-linked.js",
"module": "dist/rest-linked.js",
"jsnext:main": "dist/rest-linked.js",
"scripts": {
"prebuild": "eslint src test",
"build": "webpack",
"watch": "webpack --watch",
"pretest": "npm run build",
"test": "mocha",
"prepublish": "npm test",
"serve": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mdconaway/rest-linked.git"
},
"keywords": [
"es6",
"modules",
"js-data",
"linked",
"bundle",
"browser"
],
"author": "Michael Conaway",
"license": "MIT",
"bugs": {
"url": "https://github.com/mdconaway/rest-linked/issues"
},
"files": [
"src",
"dist"
],
"homepage": "https://github.com/mdconaway/rest-linked#readme",
"dependencies": {
"bluebird": "^3.4.6",
"js-data": "^3.0.0-rc.4",
"js-data-http": "^3.0.0-rc.2",
"pluralize": "^3.0.0"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-register": "^6.14.0",
"eslint": "^3.2.2",
"live-server": "^1.1.0",
"mocha": "^3.0.2",
"webpack": "^1.13.2"
}
}