-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.73 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
{
"name": "@itsnot/postmessage",
"version": "0.1.0-beta.1",
"scripts": {
"dev": "yarn build -w",
"build": "rollup -c",
"lint": "eslint \"./**/*.{ts,tsx,js}\"",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky install",
"publish": "yarn npm publish"
},
"main": "./build/index.js",
"module": "./build/index.es.js",
"devDependencies": {
"@babel/core": "7.2.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@types/node": "^14.14.25",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "latest",
"@zerollup/ts-transform-paths": "^1.7.18",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"body-parser": "^1.19.0",
"eslint": "7.24.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"raw-body": "^2.4.1",
"rollup": "^2.38.5",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.29.0",
"tslib": "^2.1.0",
"ttypescript": "^1.5.12",
"typescript": "^4.2.3"
},
"files": [
"build"
],
"repository": "[email protected]:rochagbr/itsnot-postmessage.git",
"author": "Gabriel Rocha <[email protected]>",
"license": "MIT",
"dependencies": {
"uuid": "^8.3.2"
}
}