forked from valentin-aleksandrov/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.72 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.72 KB
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
74
75
76
77
78
79
80
{
"name": "glue42core",
"version": "2.0.0",
"description": "Web interoperability framework",
"license": "MIT",
"private": true,
"scripts": {
"setup": "npm run clean -- --yes && npm run bootstrap && npm run build",
"clean": "lerna clean",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"test": "npm run test:scripts && lerna run test",
"build:gtf": "gulp buildGtf",
"e2e:fdc3": "cross-env RUNNER=Fdc3 npm run build:gtf && node ./e2e/scripts/copyLibs.js && cross-env RUNNER=Fdc3 node ./e2e/index.js",
"e2e:puppet": "cross-env RUNNER=Puppet npm run build:gtf && node ./e2e/scripts/copyLibs.js && cross-env RUNNER=Puppet node ./e2e/index.js",
"e2e": "cross-env RUNNER=Platform npm run build:gtf && npm run e2e:no-gtf-rebuild",
"e2e:full": "npm run e2e && npm run e2e:puppet && e2e:fdc3",
"e2e:no-gtf-rebuild": "node ./e2e/scripts/copyLibs.js && cross-env RUNNER=Init node ./e2e/index.js",
"release": "gulp release",
"test:scripts": "mocha ./scripts/test/**/*spec.js",
"lint:fix": "./node_modules/.bin/eslint --ignore-path .gitignore . --fix",
"release:live-examples": "node ./scripts/live-examples/reload-code-sandboxes.js",
"announce": "lerna-changelog"
},
"devDependencies": {
"@glue42/gateway-ws": "^3.0.16",
"@lerna/changed": "^4.0.0",
"@lerna/run": "^4.0.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/sinon": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"body-parser": "^1.19.0",
"callback-registry": "^2.7.2",
"chai": "^4.2.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"eslint": "^8.15.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-react": "^7.19.0",
"express": "^4.17.1",
"gulp": "^4.0.2",
"husky": "^8.0.1",
"karma": "^6.3.19",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-spec-reporter": "0.0.32",
"lerna": "^4.0.0",
"lerna-changelog": "^2.2.0",
"lint-staged": "^12.4.1",
"mocha": "^10.0.0",
"mockery": "^2.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.72.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.2",
"shortid": "^2.2.16",
"simple-git": "^3.7.1",
"sinon": "^11.1.1",
"tree-kill": "^1.2.2",
"typescript": "^3.8.3",
"ws": "^8.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"./node_modules/.bin/eslint --ignore-path .gitignore ."
]
},
"dependencies": {}
}