-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 789 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 789 Bytes
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
{
"name": "@classdojo/response-objects",
"version": "6.0.0",
"description": "simple value objects representing HTTP responses",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/classdojo/response-objects.git"
},
"scripts": {
"test": "mocha --timeout 3000 && ts-node test/import",
"build": "node script/generate_namespace.js > src/index.ts && tsc"
},
"author": "Nick Bottomley (github.com/bttmly)",
"license": "MIT",
"dependencies": {
"@types/node": "^22.10.1",
"@types/statuses": "^1.3.0",
"statuses": "1.3.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"expect": "^1.20.2",
"mocha": "^3.1.0",
"ts-node": "^7.0.1",
"typescript": "^5.7.2"
}
}