-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "jsval",
"version": "0.0.12",
"description": "Validators for form values based on JSON Schema.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"directories": {
"test": "test"
},
"scripts": {
"lint": "./node_modules/.bin/tslint ./src/*.ts ./test/*.ts",
"build": "rm -rf ./lib && ./node_modules/.bin/tsc -p .",
"test": "rm -f ./test/*.js && ./node_modules/.bin/tsc -p ./test && ./node_modules/.bin/mocha ./test/*.js && rm -f ./test/*.js",
"release": "npm run lint && npm run build && npm test && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/go-jstmpl/jsval.git"
},
"keywords": [
"json-schema",
"validator"
],
"author": {
"name": "Daisuke Mino",
"url": "https://github.com/minodisk"
},
"contributors": [
{
"name": "Keito Omura",
"url": "https://github.com/keito-jp"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/go-jstmpl/jsval/issues"
},
"homepage": "https://github.com/go-jstmpl/jsval#readme",
"dependencies": {
"lodash": "^4.17.11",
"power-assert": "^1.6.1"
},
"devDependencies": {
"@types/lodash": "^4.14.119",
"@types/mocha": "^5.2.5",
"@types/power-assert": "^1.5.0",
"espower-typescript": "^8.0.2",
"mocha": "^5.2.0",
"tslint": "^5.11.0",
"typescript": "^3.2.1"
}
}