-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "babel-plugin-mockingbird",
"version": "1.0.1",
"description": "",
"main": "dist/mockingbird.js",
"module": "src/mockingbird.ts",
"typings": "src/types.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"author": "Rahul Sethi",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@types/jest": "^24.0.5",
"babel-jest": "^24.1.0",
"jest": "^24.1.0",
"typescript": "^3.3.3",
"babel-plugin-dynamic-import-node": "^2.2.0",
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node",
"testRegex": "\\.test\\.ts$",
"transform": {
".*": "babel-jest"
}
},
"prettier": {
"bracketSpacing": true,
"printWidth": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all",
"useTabs": false
}
}