-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.79 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
{
"name": "better-async-await.macro",
"description": "Write async await statements in a go lang type fashion with no try catch statements",
"version": "1.0.1",
"engines": {
"node": ">=8.9.0"
},
"main": "dist/better-async-await.macro.js",
"license": "MIT",
"files": [
"dist/"
],
"keywords": [
"async-await",
"better-async-await",
"babel",
"babel-macros",
"babel-plugin-macros"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vivek12345/better-async-await.macro.git"
},
"author": "Vivek Nayyar <[email protected]> (https://viveknayyar.in)",
"bugs": {
"url": "https://github.com/vivek12345/better-async-await.macro/issues"
},
"homepage": "https://github.com/vivek12345/better-async-await.macro#readme",
"scripts": {
"test": "jest --coverage",
"build": "microbundle -i src/index.js -o dist",
"format": "prettier --write",
"ci": "npm run test -- --ci && npm run build",
"prepare": "npm run build",
"precommit": "lint-staged",
"prepublish": "npm run test && npm run build",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"dependencies": {
"babel-plugin-macros": "^2.1.0",
"@babel/template": "^7.4.4"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"all-contributors-cli": "^6.7.0",
"babel-plugin-tester": "^7.0.0",
"husky": "^3.0.0",
"jest": "^24.1.0",
"lint-staged": "^10.0.3",
"microbundle": "^0.11.0",
"prettier": "^1.10.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
},
"jest": {
"testRegex": "__tests__/.*.test.js$"
},
"lint-staged": {
"*.{js,md}": [
"prettier --write",
"git add -A"
]
}
}