-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "json-schema-services",
"version": "0.11.12",
"description": "Library that makes it easy to work with JsonSchema-enabled services. Requires Promises (polyfill with es6-promise if not available on your platform).",
"main": "esm/index.js",
"module": "esm/index.js",
"typings": "esm/index.d.ts",
"scripts": {
"test": "cd tests; jasmine",
"build": "rimraf esm/ && tsc"
},
"files": [
"esm/**/*",
"src/**/*",
"bundles/*",
"typings/**/*",
"typings.json",
"dist/json-schema-services.js",
"dist/json-schema-services.d.ts"
],
"author": "Jeffrey vH",
"license": "MIT",
"dependencies": {
"ajv": "^6.5.4",
"axios": "^0.18.0",
"base64-js": "^1.2.3",
"debug": "^4.1.0",
"eventemitter3": "^2.0.3",
"fast-json-patch": "^2.0.7",
"json-pointer": "^0.6.0",
"lodash": "^4.17.5",
"qs": "^6.5.2",
"url-template": "^2.0.8"
},
"devDependencies": {
"@types/base64-js": "^1.2.5",
"@types/debug": "0.0.30",
"@types/json-pointer": "^1.0.30",
"@types/lodash": "^4.14.105",
"@types/qs": "^6.5.1",
"@types/url-template": "^2.0.28",
"rimraf": "^2.6.1",
"typescript": "3.2.x"
}
}