forked from DFE-Digital/samling
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
45 lines (45 loc) · 1.33 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
42
43
44
45
{
"name": "samling",
"version": "1.0.0",
"description": "Serverless SAML testing",
"author": "fujifischer <[email protected]>",
"maintainers": [
"Nadav Fischer <[email protected]>"
],
"homepage": "http://github.com/fujifish/samling",
"repository": {
"type": "git",
"url": "http://github.com/fujifish/samling.git"
},
"bugs": {
"url": "https://github.com/fujifish/samling/issues"
},
"keywords": [
"SAML",
"saml",
"idp",
"testing"
],
"devDependencies": {
"bootstrap": "3.3.6",
"brfs": "1.4.3",
"browserify": "13.0.1",
"clipboard-js": "^0.2.0",
"http-server": "^0.11.1",
"jquery": "2.2.4",
"node-forge": "0.6.40",
"xml-crypto": "1.4.0",
"xmldom": "0.1.22"
},
"main": "samling.js",
"scripts": {
"prepare": "mkdir -p public/js",
"bootstrap": "cp -r node_modules/bootstrap/dist/* public/",
"jquery": "cp -r node_modules/jquery/dist/* public/js/",
"forge": "cd node_modules/node-forge && npm install && npm run bundle && cp js/forge.bundle.js ../../public",
"browser": "browserify -g brfs samling.js | sed \"s/require[(]'node-forge'[)]/window.forge/g\" > public/bundle.js",
"build": "npm run prepare && npm run bootstrap && npm run jquery && npm run forge && npm run browser",
"serve": "http-server -p 8888 ."
},
"license": "MIT"
}