-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1001 Bytes
/
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
{
"version": "0.0.1",
"name": "hyperjs",
"private": false,
"main": "hyperjs.js",
"typings": "hyperjs.d.ts",
"author": {
"name": "Fredrik Olsson",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/fredolss/hyperjs.git"
},
"homepage": "https://github.com/fredolss/hyperjs",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "node ./esbuild.mjs"
},
"keywords": [
"JSON",
"REST",
"API",
"HATEOAS",
"hypertext",
"hypermedia"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/mocha": "^2.2.48",
"@types/sinon": "^4.3.1",
"esbuild": "0.20.1",
"gulp": "^4.0.2",
"jest": "^29.7.0",
"karma-mocha": "^2.0.1",
"karma-typescript": "^5.5.4",
"minify-stream": "^2.1.0",
"mocha": "^10.3.0",
"sinon": "^17.0.1",
"ts-jest": "^29.1.2",
"tsify": "^5.0.4",
"typescript": "^5.3.3",
"vinyl-source-stream": "^2.0.0"
}
}