-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.99 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
67
68
69
70
71
72
73
{
"name": "really-simple-xdm",
"version": "1.1.3",
"description": "Experimental Cross Domain Messaging library based on Javascript Proxies.",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src/"
],
"keywords": [
"xdm",
"iframe",
"cross window messaging",
"postmessage",
"cross domain"
],
"scripts": {
"build": "webpack",
"prettier": "prettier --write *.js",
"lint-staged": "lint-staged",
"test": "ava",
"unit-test-ci": "mkdir -p dist/test-results/ava && ava --tap | tap-xunit > dist/test-results/ava/test-results.xml",
"e2e-test": "cypress run",
"e2e-test-server": "http-server -p 8080 ./build/dist",
"test-ci": "npm run unit-test-ci && npm run e2e-test",
"start": "webpack-dev-server --mode development",
"apidoc": "typedoc --out dist/doc --includeDeclarations --ignoreCompilerErrors --excludeExternals --externalPattern '**/node_modules/**' --mode file src/index.d.ts",
"cypress": "cypress open",
"copy-test-harness": "cpy --parents --cwd=cypress/e2e/ **/*.html ../../build/dist/"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"author": {
"name": "Gabor Hornyak",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Katona/really-simple-xdm.git"
},
"dependencies": {
"deep-equal": "^1.0.1",
"json-stringify-safe": "^5.0.1",
"serialize-error": "^3.0.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"ava": "^1.0.0-rc.2",
"cpy-cli": "^2.0.0",
"cypress": "^10.10.0",
"http-server": "^0.11.1",
"husky": "^1.0.0-rc.6",
"lint-staged": "^7.3.0",
"prettier": "1.12.1",
"sinon": "^4.5.0",
"start-server-and-test": "^1.7.11",
"tap-xunit": "^2.3.0",
"typedoc": "^0.14.2",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
}
}