-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 2.12 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": "rest-resource",
"version": "0.11.0",
"description": "Simplify your REST API resources",
"main": "./dist/index.js",
"unpkg": "./dist/dom/rest-resource.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "mocha -t 8000 -r ts-node/register ./tests/**/*.spec.ts",
"test-standalone": "npm run serve-tests & (sleep 5 && npm test)",
"build": "tsc && webpack && npm run generate-docs",
"dev": "tsc --watch",
"prettier": "./node_modules/prettier/bin-prettier.js --write ./src/**/*.ts ./src/*.ts",
"repl": "ts-node ./tests/repl.ts",
"generate-docs": "./node_modules/typedoc/bin/typedoc --out ./docs ./src/index.ts --excludeNotExported --excludePrivate",
"reset-ts": "rm -r ./dist && ./node_modules/.bin/tsc",
"scratch": "LOG_LEVEL=info ts-node -T --pretty ./tests/scratch.ts",
"serve-tests": "cp ./tests/fixtures.json ./tests/fixtures-local.json && json-server -p ${TEST_PORT:-8099} --quiet --delay ${TEST_DELAY_MS:-0} ./tests/fixtures-local.json",
"serve-docs": "./node_modules/serve/bin/serve.js ./docs/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baseprime/rest-resource.git"
},
"keywords": [
"rest",
"api",
"model",
"cache",
"caching",
"express",
"restify",
"vue"
],
"author": "Greg Sabia Tucker <greg@narrowlabs.com> (http://basepri.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/baseprime/rest-resource/issues"
},
"homepage": "https://github.com/baseprime/rest-resource#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"babel-core": "^6.26.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"json-server": "^0.14.2",
"mocha": "^5.2.0",
"prettier": "^1.16.2",
"serve": "^11.2.0",
"ts-node": "^8.0.2",
"typedoc": "^0.15.0",
"webpack": "^3.4.1"
},
"dependencies": {
"@types/lodash": "^4.14.137",
"@types/node": "^10.12.19",
"assert": "^1.4.1",
"axios": "^0.21.4",
"lodash": "^4.17.15",
"tslib": "^1.9.3",
"typescript": "^3.3.3",
"url-shim": "^1.0.1"
}
}