-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "fluent-schemer",
"version": "2.1.2",
"repository": "https://github.com/KonstantinSimeonov/fluent-schemer",
"description": "Small and intuitive umd validation library that provides an elegant way to express validation logic.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"validation",
"validate",
"schema",
"fluent",
"declarative",
"es2015",
"schemer"
],
"scripts": {
"flow": "flow",
"tslint": "tslint",
"lint": "yarn tslint ./index.ts ./lib/**/*.ts",
"test": "nyc ava",
"coverage": "nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"build": "webpack --progress --colors --profile",
"watch": "webpack --watch --progress --colors --profile"
},
"author": "Konstantin Simeonov<kon.simeonov@protonmail.com>",
"license": "MIT",
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.2",
"flow-bin": "^0.60.1",
"nyc": "^13.0.1",
"ts-loader": "^5.2.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1"
},
"dependencies": {},
"ava": {
"require": [
"ts-node/register"
]
}
}