-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 790 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 790 Bytes
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
{
"name": "regtester",
"version": "0.0.1",
"description": "A library for doing simple output-based regression tests.",
"main": "index.js",
"scripts": {
"test": "nodeunit test/capitalizer-test.js",
"update-output": "UPDATE_REGTEST_DATA=1 nodeunit test/capitalizer-test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/artillery/node-regtester.git"
},
"keywords": [
"regression",
"tests"
],
"author": "Mark Logan <mark@artillery.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/artillery/node-regtester/issues"
},
"homepage": "https://github.com/artillery/node-regtester",
"devDependencies": {
"coffee-script": "^1.10.0",
"nodeunit": "^0.9.1"
},
"dependencies": {
"temp": "^0.8.3"
}
}