-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 952 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
40
41
42
{
"name": "jest-fable-preprocessor",
"version": "1.4.0",
"description": "Transpiles Fable 1.0 code to JS for testing",
"main": "source/index.js",
"repository": {
"type": "git",
"url": "https://github.com/jgrund/jest-fable-preprocessor.git"
},
"publishConfig": {
"registry": " https://registry.npmjs.org"
},
"keywords": [
"F#",
"Fable",
"Jest"
],
"author": "Joe Grund",
"license": "MIT",
"scripts": {
"eslint": "eslint ./"
},
"pre-commit": [
"eslint"
],
"dependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.1.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-jest-hoist": "^22.1.0",
"fable-utils": "^1.0.6",
"find-babel-config": "1.1.0",
"glob": "^7.1.2"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.5.0",
"pre-commit": "1.2.2",
"prettier": "^1.10.2"
}
}