-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.6 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
{
"name": "furystack-core",
"version": "1.0.0-alpha-14",
"description": "FuryStack framework, Core package",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"pretest": "tslint --project tsconfig.test.json && rimraf temp && tsc -p tsconfig.test.json",
"test": "rimraf coverage && nyc mocha -p tsconfig.test.json ./temp/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": "tslint --project tsconfig.json",
"build": "rimraf dist && tsc -p tsconfig.json",
"publish:development": "npm run build && npm t && npm run typedoc && npm publish --tag development",
"prepublishOnly": "npm run test && npm run build"
},
"nyc": {},
"repository": {
"type": "git",
"url": "git+https://github.com/FuryTechs/furystack-core.git"
},
"keywords": [
"FuryStack",
"Typescript",
"Rest API",
"EndpointBuilder",
"ModelBuilder",
"FullStack"
],
"files": [
"dist",
"src"
],
"author": "Gallay Lajos",
"license": "MIT",
"bugs": {
"url": "https://github.com/FuryTechs/furystack-core/issues"
},
"homepage": "https://github.com/FuryTechs/furystack-core#readme",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
},
"dependencies": {}
}