-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.57 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
{
"name": "cross-origin-courier",
"version": "0.3.1",
"description": "TODO",
"author": "Sergey Chernykh <[email protected]> (https://github.com/serglider/)",
"homepage": " https://github.com/serglider/CrossOriginCourier.git",
"keywords": [
"TODO"
],
"license": "MIT",
"repository": {
"type": "git",
"url": " https://github.com/serglider/CrossOriginCourier.git"
},
"files": [
"lib",
"declarations"
],
"main": "lib/cross-origin-courier.cjs.js",
"module": "lib/cross-origin-courier.esm.js",
"browser": "lib/cross-origin-courier.umd.js",
"typings": "declarations",
"scripts": {
"build": "rollup -c rollup/prod.config.js",
"prebuild": "npm run declarations && npm run docs",
"dev-build": "rollup -c rollup/dev.config.js",
"dev": "rollup -c rollup/dev.config.js -w",
"declarations": "tsc --emitDeclarationOnly",
"docs": "typedoc src && node scripts/create-nojekill"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.26.0",
"@rollup/plugin-typescript": "^8.1.1",
"prettier": "^2.2.1",
"rollup": "^2.38.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"tslib": "^2.1.0",
"typedoc": "^0.20.28",
"typescript": "^4.1.5"
},
"prettier": {
"trailingComma": "es5",
"printWidth": 100,
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"arrowParens": "avoid"
}
}