-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.66 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
{
"name": "@jdw/jst",
"version": "2.0.0-beta.15",
"engines": {
"node": ">=4"
},
"description": "A json schema toolkit.",
"keywords": [
"json-schema"
],
"license": "MIT",
"author": "Jason Wijegooneratne <[email protected]>",
"contributors": [
"Brendan Abbott <[email protected]>"
],
"main": "index.js",
"scripts": {
"benchmark": "./scripts/benchmark",
"build": "./scripts/build",
"lint": "tslint -p tsconfig.json --type-check",
"release": "./scripts/release",
"test": "jest src --verbose --coverage",
"test:dist": "jest dist --verbose",
"test:watch": "yarn run test -- -o --watch",
"trash": "rm -rf dist coverage"
},
"repository": {
"type": "git",
"url": "[email protected]:jdwije/jst.git"
},
"bugs": "https://github.com/jdwije/jst/issues",
"devDependencies": {
"@types/benchmark": "^1.0.30",
"@types/chai": "^3.5.2",
"@types/chalk": "^0.4.31",
"@types/clone": "^0.1.30",
"@types/jest": "^20.0.6",
"@types/lodash": "^4.14.68",
"@types/node": "^7.0.21",
"ajv": "^4.9.0",
"benchmark": "^2.1.4",
"chai": "^3.5.0",
"chalk": "^2.0.1",
"docco": "^0.7.0",
"jest": "^20.0.4",
"json-schema-deref": "^0.3.5",
"json-schema-deref-sync": "^0.3.3",
"json-schema-ref-parser": "^3.1.2",
"ts-jest": "^20.0.6",
"ts-lint": "^4.5.1",
"ts-node": "^3.1.0",
"tslint": "^5.4.3",
"tslint-config-temando": "^1.1.4",
"tslint-strict-null-checks": "^1.0.0",
"typescript": "^2.3.3"
},
"dependencies": {
"lodash.forin": "^4.4.0",
"lodash.has": "^4.5.2",
"lodash.isobject": "^3.0.2",
"lodash.merge": "^4.6.0",
"self": "^1.0.0"
}
}