-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.94 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
{
"name": "test-perf",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test:ava": "ava --no-cache ./ava/test/*.spec.js",
"test:ava:10": "ava --no-cache ./ava/test-10/*.spec.js",
"test:ava:100": "ava --no-cache ./ava/test-100/*.spec.js",
"test:ava:1000": "ava --no-cache ./ava/test-1000/*.spec.js",
"test:jest": "jest --no-cache ./jest/test/*.spec.js",
"test:jest:10": "jest --no-cache ./jest/test-10/*.spec.js",
"test:jest:100": "jest --no-cache ./jest/test-100/*.spec.js",
"test:jest:1000": "jest --no-cache ./jest/test-1000/*.spec.js",
"test:mocha": "mocha --compilers js:babel-register ./mocha/test/*.spec.js",
"test:mocha:10": "mocha --compilers js:babel-register ./mocha/test-10/*.spec.js",
"test:mocha:100": "mocha --compilers js:babel-register ./mocha/test-100/*.spec.js",
"test:mocha:1000": "mocha --compilers js:babel-register ./mocha/test-1000/*.spec.js",
"test:tape": "tape -r babel-register ./tape/test/*.spec.js",
"test:tape:10": "tape -r babel-register ./tape/test-10/*.spec.js",
"test:tape:100": "tape -r babel-register ./tape/test-100/*.spec.js",
"test:tape:1000": "tape -r babel-register ./tape/test-1000/*.spec.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"ava": "^0.13.0",
"babel-jest": "^9.0.3",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.7.2",
"enzyme": "^2.2.0",
"jest-cli": "^0.9.2",
"mocha": "^2.4.5",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"react-dom": "^0.14.7",
"tape": "^4.5.1"
},
"ava": {
"require": [
"babel-register"
]
},
"jest": {
"testDirectoryName": "jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"enzyme"
]
}
}