-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 868 Bytes
/
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
{
"name": "atom-jest-test-runner",
"version": "1.0.1",
"description": "Run your Atom package tests using jest",
"main": "lib/index.js",
"repository": "https://github.com/SleepWalker/atom-jest-test-runner",
"keywords": [
"atom",
"jest",
"tests"
],
"author": "SleepWalker",
"license": "MIT",
"scripts": {
"test": "atom --test test",
"test:watch": "TEST_MODE='watch' npm t",
"lint": "eslint lib test",
"format": "prettier-eslint --write"
},
"atomTestRunner": "./lib/index.js",
"jest": {
"clearMocks": true,
"roots": [
"lib",
"test"
]
},
"dependencies": {
"jest-cli": "21.2.1"
},
"devDependencies": {
"babel-eslint": "8.0.1",
"babel-preset-env": "1.6.0",
"eslint": "4.8.0",
"jest": "21.2.1",
"prettier-eslint": "8.2.0",
"prettier-eslint-cli": "^4.4.0"
}
}