forked from mike-goodwin/owasp-threat-dragon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 4.73 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "owasp-threat-dragon",
"version": "0.4.19",
"private": false,
"scripts": {
"build": "npm run-script bundle && npm run-script bundle-minify && npm run-script bundle-css && npm run-script bundle-minify-css && npm run-script copy-fonts",
"build-templates": "browserify -t [browserify-ng-html2js --module templates] ./td/public/app/templates.build.js -o ./td/public/app/templates.js",
"copy-fonts": "./node_modules/.bin/copyfiles -f ./node_modules/font-awesome/fonts/*.* ./node_modules/bootstrap/dist/fonts/*.* ./td/public/fonts",
"bundle-css": "./node_modules/.bin/rework-npm ./td/public/content/app.css -o ./td/public/content/threatdragon.css",
"minify-css": "./node_modules/.bin/uglifycss ./td/public/content/threatdragon.css > ./td/public/content/threatdragon.min.css",
"bundle-minify-css": "npm run-script bundle-css && npm run-script minify-css",
"bundle": "browserify --debug ./td/public/app/app.js -o ./td/public/app/threatdragon.js",
"bundle-minify": "browserify ./td/public/app/app.js -d -p [minifyify --map ./td/public/app/threatdragon.js.map --output ./td/public/app/threatdragon.js.map ] > ./td/public/app/threatdragon.min.js",
"start": "node server.js",
"pretest": "node ./node_modules/jshint/bin/jshint --verbose --show-non-errors td",
"test": "npm run-script test-client-phantomjs && npm run-script test-client-firefox && npm run-script test-server",
"test-client-phantomjs": "./node_modules/.bin/karma start --single-run --browsers PhantomJS",
"test-client-firefox": "./node_modules/.bin/karma start --single-run --browsers Firefox",
"test-client-chrome": "./node_modules/.bin/karma start --single-run --browsers Chrome",
"test-client-ie": "./node_modules/.bin/karma start --single-run --browsers IE",
"test-server": "istanbul cover --include-all-sources -x public/** --root ./td/ --dir ./coverage/Server/ ./td.tests/serverspec/support/jasmine-runner.js",
"test-local": "npm run-script pretest && npm run-script test-client-chrome && npm run-script test-client-ie && npm run-script test-client-phantomjs && npm run-script test-client-firefox && npm run-script test-server",
"citest": "./node_modules/.bin/karma start --single-run false --browsers PhantomJS",
"codecov": "./node_modules/.bin/codecov",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"description": "OWASP Threat Dragon - a free, open source threat modelling tool",
"author": {
"name": "mike.goodwin",
"email": "[email protected]"
},
"license": "Apache-2.0",
"homepage": "http://docs.threatdragon.org/",
"repository": {
"type": "git",
"url": "git://github.com/mike-goodwin/owasp-threat-dragon.git"
},
"dependencies": {
"angular": "1.6.3",
"angular-animate": "1.6.3",
"angular-route": "1.6.3",
"angular-ui-bootstrap": "2.5.0",
"angular-xeditable": "0.6.0",
"body-parser": "1.17.1",
"bunyan": "1.8.8",
"connect-azuretables": "1.0.17",
"connect-ensure-login": "0.1.1",
"cookie-parser": "1.4.3",
"csurf": "1.9.0",
"express": "4.15.2",
"express-bunyan-logger": "1.3.1",
"express-session": "1.15.1",
"font-awesome": "4.7.0",
"helmet": "3.5.0",
"jquery": "3.0.0",
"lodash": "3.10.1",
"morgan": "1.8.1",
"octonode": "0.7.10",
"owasp-threat-dragon-core": "0.4.19",
"passport": "0.3.2",
"passport-github": "1.1.0",
"pug": "2.0.0-beta11",
"pug-bootstrap": "0.0.11",
"serve-favicon": "2.4.1"
},
"devDependencies": {
"angular-mocks": "1.6.3",
"browserify": "14.1.0",
"browserify-css": "0.10.0",
"browserify-istanbul": "2.0.0",
"browserify-ng-html2js": "1.3.0",
"codecov": "1.0.1",
"copyfiles": "1.2.0",
"debug": "2.6.2",
"istanbul": "0.4.5",
"jasmine": "2.5.3",
"jasmine-core": "2.5.2",
"jasmine-jquery": "2.1.1",
"jasmine-node": "1.14.5",
"jasmine-spec-reporter": "3.2.0",
"jshint": "2.9.4",
"karma": "1.5.0",
"karma-browserify": "5.1.1",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-firefox-launcher": "1.0.1",
"karma-ie-launcher": "1.0.0",
"karma-jasmine": "1.1.0",
"karma-ng-html2js-preprocessor": "1.0.0",
"karma-phantomjs-launcher": "1.0.4",
"karma-phantomjs-shim": "1.4.0",
"karma-spec-reporter": "0.0.30",
"karma-threshold-reporter": "^0.1.15",
"karma-xml-reporter": "0.1.4",
"minifyify": "7.3.5",
"mockery": "2.0.0",
"npm-html2js": "0.1.8",
"passport-local": "1.0.0",
"phantomjs-polyfill-find": "ptim/phantomjs-polyfill-find",
"phantomjs-prebuilt": "2.1.14",
"requirejs": "2.3.3",
"rework-npm-cli": "0.1.3",
"snyk": "1.25.2",
"supertest": "3.0.0",
"uglifycss": "0.0.25",
"watchify": "3.9.0"
},
"snyk": true
}