-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 939 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
{
"name": "@manifoldco/signature",
"version": "1.1.0",
"description": "Verify signed HTTP requests from Manifold",
"main": "index.js",
"repository": "[email protected]:manifoldco/node-signature.git",
"author": "Jeff Andersen <@jeffandersen>",
"license": "BSD-3-Clause",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "npm run jshint && npm run test:all",
"test:all": "mocha -R spec 'test/integration/**/*.js'",
"test:watch": "mocha -R spec --watch 'test/integration/**/*.js'",
"jshint": "jshint ."
},
"engines": {
"node": ">=4.4.6"
},
"dependencies": {
"base64url": "^2.0.0",
"ed25519": "^0.0.4",
"es6-promise": "^4.1.0"
},
"devDependencies": {
"raw-body": "^2.2.0",
"assert": "^1.4.1",
"body-parser": "^1.17.1",
"express": "^4.15.2",
"jshint": "^2.9.4",
"mocha": "^3.2.0",
"node-mocks-http": "^1.6.1",
"sinon": "^2.1.0"
}
}