-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 805 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 805 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
32
33
34
35
36
37
{
"name": "react-tape",
"version": "1.0.0",
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
]
},
"description": "Unit testing React components with Tape in ES6",
"scripts": {
"test": "babel-tape-runner tests/**/*.js | faucet"
},
"keywords": [
"tape",
"react",
"unit",
"test",
"testing"
],
"author": "Matthias Gattermeier",
"devDependencies": {
"babel-core": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-tape-runner": "^2.0.0",
"extend-tape": "^1.1.0",
"faucet": "0.0.1",
"react": "^0.14.3",
"react-addons-test-utils": "^0.14.3",
"react-unit": "^1.1.1",
"tape": "^4.2.2",
"tape-jsx-equals": "^1.0.0"
}
}