-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
58 lines (58 loc) · 1.86 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": "xfc",
"version": "1.12.0",
"description": "A Cross Frame Container that handles securely embedding web content into a 3rd party domain",
"author": "Cerner Corporation",
"license": "Apache-2.0",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "npm run test && npm run clean && npm run lint-js && npm run build-es5 && npm run build-webpack",
"build-doc": "jsdoc --package package.json -d doc ./src/**/*.js",
"build-es5": "babel src --out-dir lib ",
"build-webpack": "webpack -p --progress --colors --display-error-details",
"clean": "rm -rf dist lib doc",
"dev": "webpack-dev-server --config webpack.config.dev.js",
"lint-js": "eslint 'src/**/*.js' --fix",
"prepare": "npm run build-es5 && npm run build-webpack",
"test": "mocha --require @babel/register --require jsdom-global/register --recursive"
},
"dependencies": {
"@babel/runtime": "^7.5.0",
"jsonrpc-dispatch": "^2.3.0",
"mutation-observer": "^1.0.3"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/plugin-transform-object-assign": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/register": "^7.5.0",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.21.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.1",
"jsdoc": "^3.6.0",
"jsdom": "^16.0.0",
"jsdom-global": "3.0.0",
"matchdep": "^2.0.0",
"mocha": "^8.0.0",
"sinon": "^9.0.0",
"sinon-chai": "^3.5.0",
"sinon-test": "^3.0.0",
"webpack": "^4.28.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cerner/xfc.git"
}
}