-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.99 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.99 KB
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
{
"name": "func-shunit",
"version": "0.0.1",
"babel": {
"presets": [
"es2015"
]
},
"description": "A basic project support bootstrap that will handle documenting, testing, reporting and security analysis of your application.",
"scripts": {
"document:javascripts:application": "node ./tasks/documentation/javascripts-application",
"document:javascripts:complexity": "node ./tasks/documentation/javascripts-complexity",
"document:javascripts:vulnerabilities": "node ./tasks/documentation/javascripts-vulnerabilities",
"document:tests:functional:suite:steps": "node ./tasks/documentation/test-functional-suite-steps",
"document:tests:functional:suite:support": "node ./tasks/documentation/test-functional-suite-support",
"document:tests:functional:results": "node ./tasks/documentation/test-functional-results",
"document:tests:unit:results": "node ./tasks/documentation/test-unit-results",
"document:tests:unit:coverage": "node ./tasks/documentation/test-unit-coverage",
"postinstall": "selenium-standalone install",
"func-shunit": "node ./tasks/index",
"test:unit": "node ./tasks/tests/unit",
"test:functional": "node ./tasks/tests/functional"
},
"author": "Stuart Pretorius",
"license": "ISC",
"devDependencies": {
"allure-commandline": "^1.5.0",
"babel-core": "^6.16.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"chai": "^3.5.0",
"colours": "^0.6.0-2",
"cucumber": "^1.3.1",
"ink-docstrap": "^1.3.0",
"istanbul": "^1.1.0-alpha.1",
"jsdoc": "^3.4.2",
"jsdom": "^9.8.3",
"mocha": "^3.1.2",
"mochawesome": "^1.5.3",
"plato": "^1.7.0",
"retire": "^1.2.12",
"rimraf": "^2.5.4",
"selenium-standalone": "^5.8.0",
"shelljs": "^0.7.5",
"wdio-allure-reporter": "^0.1.2",
"wdio-cucumber-framework": "^0.2.11",
"wdio-phantomjs-service": "^0.2.2",
"wdio-selenium-standalone-service": "0.0.7",
"wdio-spec-reporter": "0.0.3",
"webdriverio": "^4.4.0"
}
}