This repository was archived by the owner on Dec 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.03 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.03 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@furystack/http-api",
"version": "0.5.0",
"description": "HTTP Api FuryStack package",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"precommit": "npm run test",
"commit": "git-cz",
"pretest": "tslint --project tsconfig.test.json && rimraf temp && tsc -p tsconfig.test.json",
"test": "rimraf coverage && jest",
"prebuild": "tslint --project tsconfig.json",
"build": "rimraf dist && tsc -p tsconfig.json",
"prepublishOnly": "npm run test && npm run build",
"publish:development": "npm run build && npm t && npm run typedoc && npm publish --tag development",
"typedoc": "typedoc --mode file --out documentation src --tsconfig tsconfig.json --theme c:/Users/%USERNAME%/AppData/Roaming/npm/node_modules/@sensenet/typedoc-theme/sn-theme"
},
"repository": {
"type": "git",
"url": "https://github.com/furystack/core.git"
},
"keywords": [
"FuryStack",
"HTTP",
"REST",
"API",
"Actions"
],
"publishConfig": {
"access": "public"
},
"author": "gallay.lajos@gmail.com",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/furystack/core.git"
},
"nyc": {
"exclude": [
"temp/test/**/*.*",
"temp/src/**/I*.js",
"**/index.js"
],
"include": "temp/src/**/*.*",
"check-coverage": true,
"cache": true,
"all": true,
"reporter": [
"lcov",
"text-summary",
"json"
]
},
"homepage": "https://github.com/furystack/core.git",
"dependencies": {
"@furystack/core": "^1.0.4",
"@furystack/inject": "^1.0.3",
"@sensenet/client-utils": "^1.2.1",
"@types/node": "^10.12.3",
"hash.js": "^1.1.5",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/uuid": "^3.4.4",
"ts-jest": "^23.10.4",
"@types/jest": "^23.3.9",
"jest": "^23.6.0",
"rimraf": "^2.6.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
},
"config": {
"commitizen": {
"path": "sensenet-kfi-cz-conventional-changelog"
}
},
"typings": "./dist/index.d.ts"
}