This repository has been archived by the owner on Jan 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.44 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "sn-client-js",
"version": "3.0.3",
"description": "A JavaScript client for Sense/Net ECM that makes it easy to use the REST API of the Content Repository.",
"main": "dist/src/SN.js",
"files": [
"dist",
"src",
"test",
"documentation",
"coverage"
],
"scripts": {
"lint": "./node_modules/.bin/tslint --project tsconfig.json",
"clean": "rimraf dist",
"precommit": "npm run lint",
"commit": "git-cz",
"pretest": "npm run build",
"test": "nyc mocha -p tsconfig.json dist/test/index.js",
"check-coverage": "istanbul check-coverage ",
"report-coverage": "cat ./coverage/lcov.info | ./node_modules/.bin/codecov",
"semantic-release": "semantic-release pre && semantic-release post",
"prebuild": "npm run lint && npm run clean",
"build": "tsc",
"typedoc": "./node_modules/.bin/typedoc --mode modules --tsconfig ./tsconfig.typedoc.json --out documentation --excludePrivate --theme default --readme readme.md ./src",
"publish:development": "npm t && npm run typedoc && npm publish --tag development"
},
"repository": {
"type": "git",
"url": "https://github.com/SenseNet/sn-client-js.git"
},
"keywords": [
"sensenet",
"ecm",
"javascript",
"REST",
"ajax",
"API"
],
"author": "Sense/Net <[email protected]> (http://sensenet.com/)",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/SenseNet/sn-client-js/issues"
},
"nyc": {
"exclude": [
"dist/test/**/*.*",
"dist/src/**/I*.js"
],
"include": "dist/src/**/*.*",
"check-coverage": true,
"cache": true,
"all": true,
"reporter": [
"lcov",
"text-summary",
"json"
]
},
"homepage": "https://sensenet.com",
"dependencies": {
"nyc": "11.0.2",
"rxjs": "5.5.2",
"sensenet-kfi-cz-conventional-changelog": "1.0.0"
},
"devDependencies": {
"@types/app-root-path": "1.2.4",
"@types/chai": "4.1.2",
"@types/mocha": "2.2.47",
"@types/node": "9.3.0",
"chai": "4.1.2",
"codecov": "3.0.0",
"commitizen": "2.9.6",
"mocha": "5.0.0",
"mocha-typescript": "1.0.23",
"rimraf": "^2.6.1",
"tslint": "^5.8.0",
"tslint-consistent-codestyle": "^1.10.2",
"typedoc": "^0.10.0",
"typedoc-plugin-external-module-name": "^1.0.9",
"typescript": "^2.6.1"
},
"config": {
"commitizen": {
"path": "sensenet-kfi-cz-conventional-changelog"
}
},
"typings": "./dist/src/SN.d.ts"
}