-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "jwt-client",
"description": "Micro service to read, write and save JWT headers",
"version": "0.2.1",
"author": "Paul Dijou <[email protected]> (http://pauldijou.fr)",
"license": "Apache 2",
"homepage": "https://github.com/pauldijou/jwt-client",
"repository": {
"type": "git",
"url": "https://github.com/pauldijou/jwt-client.git"
},
"bugs": {
"url": "https://github.com/pauldijou/jwt-client/issues"
},
"keywords": [
"jwt"
],
"main": "node.js",
"browser": "browser.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/karma/bin/karma start",
"node": "node ./test/node/main.js",
"browserify": "browserify ./test/browserify/main.js -o ./test/browserify/main.bundle.js",
"webpack": "webpack ./test/webpack/main.js ./test/webpack/main.bundle.js"
},
"devDependencies": {
"karma": "^0.12.x",
"karma-chrome-launcher": "^0.1.x",
"karma-firefox-launcher": "^0.1.x",
"karma-ie-launcher": "^0.1.x",
"karma-jasmine": "^0.1.x",
"karma-opera-launcher": "^0.1.x",
"karma-phantomjs-launcher": "^0.1.x",
"karma-safari-launcher": "^0.1.x",
"requirejs": "^2.1.22",
"webpack": "^1.12.13"
}
}