-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 839 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 839 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
{
"name": "test-jest",
"version": "0.0.1",
"description": "Testing jest mocking and some other jest & babel tricks",
"main": "index.js",
"scripts": {
"test": "jest",
"test:modules": "jest -c jest.config.mock.modules.js",
"test:classes": "jest -c jest.config.mock.classes.js",
"test:dev": "jest --watch",
"test:debug": "jest --debug",
"test:clear": "jest --clearCache && rm -rf dist",
"test:config": "jest --showConfig"
},
"keywords": [
"jest",
"babel",
"unit testing",
"mocking"
],
"author": "nidkil",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-plugin-module-resolver": "^3.1.1",
"jest": "^23.6.0"
}
}