-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1 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
{
"name": "atom-mocha",
"version": "v2.2.2",
"description": "Run Atom specs using Mocha and Chai.",
"repository": "https://github.com/Alhadis/Atom-Mocha",
"author": "John Gardner <[email protected]>",
"license": "ISC",
"main": "./index.js",
"atomTestRunner": "./index.js",
"scripts": {
"lint": "npx eslint .",
"test": "atom -t ./spec",
"install": "node ./bin/post-install.js"
},
"engines": {
"atom": ">=1.35.0"
},
"files": ["bin", "lib", "index.js"],
"dependencies": {
"chai": "^4.3.4",
"chinotto": "^1.0.0",
"diff": "^5.0.0",
"mocha": "^9.0.3",
"mocha-when": "^1.0.1",
"print": "^1.2.0"
},
"devDependencies": {
"@alhadis/eslint-config": "^2.3.3",
"atom-ts-transpiler": "^1.5.2",
"eslint": "^7.32.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"typescript": "^3.8.3"
},
"atomTranspilers": [{
"transpiler": "atom-ts-transpiler",
"glob": "spec/**/*.{ts,tsx}",
"options": {
"compilerOptions": {"jsx": "react"},
"cacheKeyFiles": [],
"verbose": false
}
}]
}