This repository has been archived by the owner on Dec 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.92 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
67
68
69
70
71
72
73
74
75
{
"name": "@furystack/core",
"version": "1.0.4",
"description": "Core FuryStack package",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"precommit": "npm run test",
"commit": "git-cz",
"pretest": "tslint --project tsconfig.test.json && rimraf coverage && rimraf temp && tsc -p tsconfig.test.json",
"test": "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": [
"sensenet",
"ecm",
"content management",
"content query",
"lucene"
],
"publishConfig": {
"access": "public"
},
"author": "[email protected]",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/furystack/core.git"
},
"nyc": {
"exclude": [
"temp/test/**/*.*",
"temp/src/**/I*.js",
"temp/src/Types/**/*.*"
],
"include": "temp/src/**/*.*",
"check-coverage": true,
"cache": true,
"all": true,
"reporter": [
"lcov",
"text-summary",
"json"
]
},
"homepage": "https://github.com/furystack/core.git",
"dependencies": {
"@furystack/inject": "^1.0.3",
"@sensenet/client-utils": "^1.2.1"
},
"devDependencies": {
"@types/jest": "^23.3.9",
"jest": "^23.6.0",
"rimraf": "^2.6.1",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
},
"config": {
"commitizen": {
"path": "sensenet-kfi-cz-conventional-changelog"
}
},
"typings": "./dist/index.d.ts"
}