-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.93 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
{
"name": "sukima",
"version": "0.14.10",
"description": "Type-safe library for build json schema.",
"main": "build/src/index.js",
"scripts": {
"compile": "tsc",
"bundle": "dts-bundle --name sukima --main build/src/index.d.ts",
"watch": "tsc --watch",
"unit": "NODE_ENV=test mocha --recursive --compilers ts:ts-node/register --bail test/**.spec.ts",
"unit:prebuilt": "NODE_ENV=test mocha --recursive --bail build/test/**.spec.js",
"cover": "NODE_ENV=test nyc npm run unit",
"cover:check": "nyc check-coverage --lines 100 --functions 100 --branches 100",
"build": "npm run compile && npm run bundle",
"clean": "rm -rf build && rm -rf coverage && rm -rf .nyc_output",
"prepublish": "npm run clean && npm run build && npm test",
"lint": "tslint --project tsconfig.json",
"lint:fix": "tslint --fix --project tsconfig.json",
"test": "npm run lint && npm run cover",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish"
},
"homepage": "https://github.com/vietthang/sukima",
"author": "Yoshi",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.10",
"dts-bundle": "^0.7.2",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"source-map-support": "^0.4.14",
"ts-node": "^3.0.2",
"tslint": "^4.5.1",
"tslint-config-standard": "^4.0.0",
"typescript": "^2.3.2"
},
"dependencies": {
"ajv": "^5.1.5",
"monet": "^0.8.10"
},
"typings": "build/src/sukima.d.ts",
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts",
"src/index.ts",
"src/operators.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"all": true
}
}