-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.4 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
{
"name": "curriculum-js",
"type": "module",
"version": "0.4.0",
"description": "library to work with slonl/curriculum datasets",
"main": "src/curriculum.js",
"scripts": {
"test": "tap test/*.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slonl/curriculum-js.git"
},
"author": "auke@muze.nl",
"license": "MIT",
"bugs": {
"url": "https://github.com/slonl/curriculum-js/issues"
},
"homepage": "https://github.com/slonl/curriculum-js#readme",
"browser": {
"fs": false,
"cross-fetch": false
},
"devDependencies": {
"buffer": "^6.0.3",
"eslint": "^8.10.0",
"events": "^3.3.0",
"https-browserify": "^1.0.0",
"parcel": "^2.3.2",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"stream-http": "^3.2.0",
"tap": "^16.2.0",
"url": "^0.11.0",
"util": "^0.12.4"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9",
"@octokit/rest": "^18.12.0",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0",
"base-64": "^1.0.0",
"cross-fetch": "^3.1.5",
"json-schema-ref-parser": "^9.0.9",
"jsondiffpatch": "^0.4.1",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"utf8": "^3.0.0",
"uuid": "^8.3.2"
},
"targets": {
"regular": {
"source": "src/browser.js",
"context": "browser",
"includeNodeModules": true
}
}
}