forked from testem/testem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.44 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
{
"name": "testem",
"description": "Test'em 'scripts! Javascript Unit testing made easy.",
"keywords": [
"javascript",
"testing",
"unittest",
"browser"
],
"version": "2.6.0",
"author": "Toby Ho <airportyh@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/testem/testem.git"
},
"bugs": {
"url": "http://github.com/testem/testem/issues"
},
"engines": {
"node": "^4.5 || 6.* || >= 7.*"
},
"license": "MIT",
"dependencies": {
"backbone": "^1.1.2",
"bluebird": "^3.4.6",
"charm": "^1.0.0",
"commander": "^2.6.0",
"consolidate": "^0.15.1",
"execa": "^0.10.0",
"express": "^4.10.7",
"fireworm": "^0.7.0",
"glob": "^7.0.4",
"http-proxy": "^1.13.1",
"js-yaml": "^3.2.5",
"lodash.assignin": "^4.1.0",
"lodash.castarray": "^4.4.0",
"lodash.clonedeep": "^4.4.1",
"lodash.find": "^4.5.1",
"lodash.uniqby": "^4.7.0",
"mkdirp": "^0.5.1",
"mustache": "^2.2.1",
"node-notifier": "^5.0.1",
"npmlog": "^4.0.0",
"printf": "^0.3.0",
"rimraf": "^2.4.4",
"socket.io": "^2.1.0",
"spawn-args": "^0.2.0",
"styled_string": "0.0.1",
"tap-parser": "^7.0.0",
"xmldom": "^0.1.19"
},
"files": [
"lib",
"public",
"README.md",
"testem.js",
"assets",
"package.json",
"views"
],
"scripts": {
"install:all": "npm install && npm install phantomjs-prebuilt",
"test": "./bin/run-tests.js",
"cover": "cover run ./node_modules/.bin/_mocha tests/*_tests.js tests/**/*_tests.js; cover report html; open cover_html/index.html",
"integration": "node ./bin/run-integration.js",
"testem-tests": "mocha --opts tests/mocha.opts tests/*_tests.js tests/**/*_tests.js",
"browser-tests": "cd examples/saucelabs/ && ../../testem.js ci -d",
"lint": "eslint ."
},
"devDependencies": {
"bluebird-retry": "^0.11.0",
"browserify": "^16.2.2",
"chai": "^4.0.2",
"chai-files": "^1.2.0",
"chai-shallow-deep-equal": "^1.4.4",
"cheerio": "^1.0.0-rc.2",
"dirty-chai": "^2.0.0",
"eslint": "^4.1.0",
"eslint-plugin-chai-expect": "^1.1.1",
"eslint-plugin-mocha": "^5.0.0",
"mocha": "^3.0.0",
"request": "^2.51.0",
"saucie": "^3.0.1",
"shelljs": "^0.8.2",
"sinon": "^5.0.10",
"sinon-chai": "^3.0.0",
"tape": "^4.0.0",
"tmp": "0.0.33"
},
"bin": {
"testem": "./testem.js"
},
"main": "./lib/api.js",
"optionalDependencies": {}
}