-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.81 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
{
"name": "protoframe",
"version": "1.1.1",
"author": "Branden Visser",
"license": "MIT",
"description": "A small (dependency-free) library for 2-way iframe communication.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"_build": "tsc --build tsconfig.build.json",
"build": "run-s lint test clean _build",
"clean": "rm -rf ./dist",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"release": "release-it",
"start": "karma start",
"test": "karma start --single-run"
},
"repository": {
"type": "git",
"url": "git://github.com/mrvisser/protoframe.git"
},
"keywords": [
"addEventListener",
"communication",
"iframe",
"message",
"messaging",
"postMessage",
"protocol",
"window"
],
"dependencies": {},
"devDependencies": {
"@types/jasmine": "^3.7.6",
"@types/karma": "^6.3.0",
"@types/node": "^15.9.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"acorn": "^8.3.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"jasmine": "^3.7.0",
"jasmine-core": "^3.7.1",
"karma": "^6.3.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-firefox-launcher": "^2.1.1",
"karma-jasmine": "^4.0.1",
"karma-spec-reporter": "^0.0.32",
"karma-typescript": "^5.5.1",
"karma-typescript-es6-transform": "^5.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"regenerator-runtime": "^0.13.7",
"release-it": "^14.7.0",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.3.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}