-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.88 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
{
"name": "hypnos",
"version": "0.1.0",
"description": "An API client and ORM for CoreAPI powered REST APIs.",
"main": "./lib/index.js",
"scripts": {
"build": "npm run build:lib",
"build:lib": "cross-env BABEL_ENV=production babel src --out-dir lib",
"clean": "rimraf dist es lib",
"prepublish": "npm run clean && npm run build && npm run doc",
"test": "cross-env NODE_ENV=test jest --config=jest.json --coverage",
"lint": "./node_modules/eslint/bin/eslint.js -c ./.eslintrc.yml --ext .jsx,.js src",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"doc": "esdoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adventurerscodex/hypnos.git"
},
"keywords": [
"api",
"client",
"REST",
"Django-REST",
"ORM",
"CoreAPI"
],
"author": "Brian Schrader",
"license": "MIT",
"bugs": {
"url": "https://github.com/adventurerscodex/hypnos/issues"
},
"homepage": "https://github.com/adventurerscodex/hypnos#readme",
"optionalDependencies": {
"knockout": "^3.5.0-beta"
},
"dependencies": {
"node-cache": "^4.2.0",
"object-hash": "^1.3.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"coreapi": "^0.1.1",
"coveralls": "^3.0.3",
"cross-env": "^5.0.5",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^20.0.4",
"rimraf": "^2.6.1",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.11"
}
}