-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·76 lines (76 loc) · 1.7 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
{
"name": "validolum",
"version": "1.3.0",
"description": "Utility for parsing of JavaScript objects",
"main": "./dist/src/index.js",
"scripts": {
"prepack": "npm run build",
"clean": "rm -rf ./dist",
"release": "npm publish --access public",
"build": "npm run clean && tsc -p tsconfig.json",
"build:w": "tsc -p tsconfig.json -w",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "mocha --recursive --require ts-node/register \"tests/**.ts\" --watch",
"test:once": "mocha --require ts-node/register \"tests/**.ts\"",
"cover": "nyc npm run test:once",
"test:ci": "nyc npm run test:once && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"url": "https://github.com/AIRTucha/validolum"
},
"keywords": [
"typescript",
"ts",
"parsing",
"json",
"validation",
"dsl",
"domain specific language",
"edsl",
"schema"
],
"author": {
"name": "Alex T",
"url": "https://github.com/AIRTucha"
},
"license": "MIT",
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"node_modules",
"typings",
"src/**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"text"
],
"all": true
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.4",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
},
"dependencies": {
"amonad": "2.0.1"
}
}