-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
{
"name": "not-valid",
"version": "2.0.0",
"description": "Composable message-based validation",
"main": "bin/index.js",
"typings": "bin/index.d.ts",
"scripts": {
"prepublishOnly": "npm run review && npm run build",
"build": "tsc",
"build:test": "tsc -p tsconfig.test.json",
"lint:src": "tslint -c tslint.json src/**/*.ts -e src/**/*.d.ts",
"lint:test": "tslint -c tslint.json test/**/*.ts",
"lint": "npm run lint:src && npm run lint:test",
"test": "npm run build:test && alsatian \"bin-test/**/*.test.js\"",
"review": "npm run test && npm run lint"
},
"files": [
"bin"
],
"keywords": [
"validation"
],
"license": "MIT",
"author": "NewOrbit Ltd",
"repository": {
"type": "git",
"url": "git+https://github.com/NewOrbit/not-valid.git"
},
"bugs": {
"url": "https://github.com/NewOrbit/not-valid/issues"
},
"homepage": "https://github.com/NewOrbit/not-valid#readme",
"dependencies": {
"valid-nino": "^1.0.0"
},
"devDependencies": {
"@types/node": "6.0.106",
"alsatian": "^2.1.0",
"neworbit-tslint-config": "^2.0.0",
"tslint": "^5.9.1",
"typescript": "^3.0.3"
}
}