-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.71 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
{
"name": "@daocasino/platform-messaging",
"version": "0.1.1",
"description": "This library allows you to wrap your classes and use them over iframe",
"license": "MIT",
"author": "Gar|k <garik.djan@gmail.com>",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/DaoCasino/platform-messaging.git"
},
"bugs": {
"url": "https://github.com/DaoCasino/platform-messaging/issues"
},
"homepage": "https://github.com/DaoCasino/platform-messaging/#readme",
"scripts": {
"prepare": "yarn build",
"prebuild": "rimraf -rf lib && rimraf -rf lib.browser",
"build": "tsc && tsc -p tsconfig.browser.json",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"test": "mocha -r ts-node/register src/tests/*.*.ts",
"prebuild:example": "rimraf -rf example/dist",
"build:example": "rollup -c",
"prestart:example": "yarn build:example",
"start:example": "serve example"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^12.0.7",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"chai": "^4.1.2",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"mocha": "^5.2.0",
"prettier": "^1.19.1",
"rollup": "^1.29.1",
"rollup-plugin-typescript2": "^0.25.3",
"serve": "^11.3.0",
"ts-node": "^8.2.0",
"typescript": "^3.5.1",
"rimraf": "^3.0.2"
},
"files": [
"lib",
"lib.browser"
],
"main": "lib/IframeTransportProvider.js",
"types": "lib/IframeTransportProvider.d.ts",
"husky": {
"hooks": {
"pre-push": "yarn test"
}
}
}