-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
85 lines (85 loc) · 3.19 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
{
"name": "owasp-threat-dragon-core",
"version": "1.2.0",
"private": false,
"scripts": {
"build": "npm run bundle-css && npm run build-templates",
"build-templates": "./node_modules/.bin/npm-html2js -b src -i \"src/**/*.html\" --module templates -o \"./src/templates.js\"",
"pretest": "node ./node_modules/jshint/bin/jshint --verbose --show-non-errors src",
"bundle-css": "./node_modules/.bin/rework-npm ./src/content/app.css -o ./src/content/threatdragon-core.css",
"test": "npm run-script test-client-phantomjs && npm run-script test-client-firefox",
"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-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",
"citest": "./node_modules/.bin/karma start --single-run false --browsers Chrome",
"codecov": "./node_modules/.bin/codecov",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"description": "OWASP Threat Dragon core module",
"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-core.git"
},
"main": "./src/index.js",
"style": "./src/content/threatdragon-core.css",
"dependencies": {
"angular": "1.7.9",
"angular-route": "1.7.8",
"angular-ui-bootstrap": "2.5.6",
"bootstrap": "3.4.1",
"hotkeys-js": "^3.7.6",
"jointjs": "^2.2.1",
"jquery": "^3.4.1",
"json-rules-engine": "3.0.2",
"lodash": "^4.17.15",
"rework-npm-cli": "^0.1.3",
"toastr": "2.1.2"
},
"devDependencies": {
"angular-mocks": "1.7.8",
"babel-polyfill": "6.26.0",
"browserify": "14.5.0",
"browserify-css": "0.13.1",
"browserify-istanbul": "3.0.1",
"browserify-ng-html2js": "1.3.0",
"codecov": "3.0.0",
"debug": "3.1.0",
"istanbul": "0.4.5",
"jasmine": "2.8.0",
"jasmine-core": "2.8.0",
"jasmine-jquery": "2.1.1",
"jasmine-node": "1.14.5",
"jasmine-spec-reporter": "4.2.1",
"jshint": "2.9.5",
"karma": "1.7.1",
"karma-browserify": "5.1.1",
"karma-chrome-launcher": "2.2.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.5.0",
"karma-spec-reporter": "0.0.31",
"karma-threshold-reporter": "^0.1.15",
"karma-xml-reporter": "0.1.4",
"mockery": "2.1.0",
"npm-html2js": "0.1.8",
"phantomjs-polyfill-find": "ptim/phantomjs-polyfill-find",
"phantomjs-prebuilt": "2.1.16",
"requirejs": "2.3.5",
"snyk": "^1.299.0",
"watchify": "3.9.0"
},
"snyk": true
}