-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.09 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "buble-jest-flow",
"version": "1.0.7",
"description": "Custom jest transformer to remove flow type annotations using buble",
"author": "Abhisek Pattnaik <abhisekp@lecturenotes.in> (https://about.me/abhisekp)",
"license": "MIT",
"scripts": {
"test": "jest",
"coveralls": "coveralls < coverage/lcov.info",
"codecov": "codecov -f coverage/lcov.info",
"build": "rimraf dist/ && rollup -c",
"dev": "rollup -c -w",
"fix": "prettier-eslint --write index.js index.test.js",
"lint": "eslint index.js index.test.js",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand --watch",
"test:debug:win": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch"
},
"main": "dist/buble-jest-flow.cjs.js",
"module": "dist/buble-jest-flow.esm.js",
"bugs": {
"url": "https://github.com/abhisekp/buble-jest-flow/issues"
},
"homepage": "https://github.com/abhisekp/buble-jest-flow",
"repository": {
"type": "git",
"url": "https://github.com/abhisekp/buble-jest-flow.git"
},
"keywords": [
"jest",
"flow",
"transform",
"transformer",
"flowtype",
"types",
"buble",
"test"
],
"jest": {
"verbose": true,
"collectCoverage": true,
"notify": true,
"transform": {
"^.+\\.jsx?$": "./index.js"
}
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"buble-jest": "^1.0.1"
},
"dependencies": {
"buble": "*",
"buble-jest": "^1.0.1",
"flow-remove-types": "^1.2.3"
},
"devDependencies": {
"babel-eslint": "^8.2.5",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "13.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.17.0",
"flow-bin": "^0.75.0",
"jest": "^23.2.0",
"npmignore": "^0.2.0",
"prettier-eslint": "^8.8.2",
"rollup": "^0.62.0",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-progress": "^0.4.0",
"rollup-plugin-uglify-es": "^0.0.1"
}
}