-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
27 lines (27 loc) · 845 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
{
"license": "GPL-3.0",
"repository": {
"url": "https://github.com/petersalomonsen/githttpserver"
},
"scripts": {
"start": "node server/githttpserver.js",
"test": "mocha server/**/*.spec.js",
"test-browser": "karma start --single-run --browsers ChromeHeadless_NoUserGestureRequired karma.conf.cjs",
"test-browser-watch": "karma start --browsers Chrome_NoUserGestureRequired karma.conf.cjs"
},
"type": "module",
"dependencies": {
"cgi": "^0.3.1",
"js-sha256": "^0.9.0",
"near-api-js": "^0.44.2",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"chai": "^4.3.6",
"karma": "^6.3.17",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"mocha": "^9.2.2"
}
}