-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 994 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
{
"name": "rah-rah",
"version": "2.3.0",
"description": "Use await while respecting failure cases without exceptions",
"repository": "https://github.com/bendyworks/rah-rah",
"main": "./lib/rah-rah.js",
"types": "./lib/rah-rah.d.ts",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/parser": "^7.8.6",
"@babel/preset-env": "^7.7.7",
"@babel/types": "^7.8.6",
"@types/jest": "^25.1.3",
"babel-loader": "^8.0.6",
"jest": "^25.1.0",
"jest-diff": "^25.1.0",
"pretty-format": "^25.1.0",
"ts-jest": "^25.2.1",
"ts-loader": "^9.4.2",
"typescript": "^3.8.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": ">=3.1.11"
},
"scripts": {
"test": "npx jest",
"start": "cd examples && webpack-dev-server",
"build": "tsc --project ./tsconfig.json",
"release": "npm run build && npm install && npm publish"
},
"author": "Brad Grzesiak",
"license": "Apache-2.0"
}