-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.52 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
{
"name": "retap",
"version": "2.0.0",
"description": "Wrapper around tape that adds functions for testing React components",
"main": "lib/retap.js",
"scripts": {
"test": "babel-tape-runner \"test/check-correct-output.jsx\" | faucet",
"passing-test": "babel-tape-runner \"test/passing-test.jsx\"",
"failing-test": "babel-tape-runner \"test/failing-test.jsx\"",
"elements-test": "babel-tape-runner \"test/element-specific-checks.jsx\"",
"dangerous-test": "babel-tape-runner \"test/dangerous-html.jsx\"",
"form-test": "babel-tape-runner \"test/form-elements.jsx\"",
"clean": "rm -rf lib",
"compile": "babel src -d lib --source-maps",
"prepublish": "npm run clean && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidmason/retap.git"
},
"keywords": [
"test",
"tap",
"react",
"react-component"
],
"author": {
"name": "David Mason",
"email": "drdmason@gmail.com",
"url": "https://github.com/davidmason"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/davidmason/retap/issues"
},
"homepage": "https://github.com/davidmason/retap#readme",
"dependencies": {
"defined": "^1.0.0",
"find-filename": "^0.1.0",
"has": "^1.0.1",
"lodash": "^3.10.1",
"react-unit": "^1.0.6",
"tape": "^4.2.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-tape-runner": "^1.2.0",
"classnames": "^2.1.3",
"concat-stream": "^1.5.0",
"faucet": "0.0.1",
"react": "^0.13.3"
}
}