-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.9 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "plot-data",
"version": "0.8.5",
"description": "",
"main": "./lib/core.js",
"type": "module",
"scripts": {
"instrument": "nyc instrument --compact=false src instrumented",
"build": "npm run instrument && NODE_ENV=production webpack --config webpack.config.js",
"dev": "npm run instrument && NODE_ENV=development webpack --config webpack-dev.config.cjs",
"cov": "npm run instrument && NODE_ENV=coverage webpack --config webpack-dev.config.cjs",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"start": "http-server -a localhost -p 3030",
"merge_reports": "mochawesome-merge cypress/results/*.json > cypress/results/full_report.json",
"generate_mochawesome_report": "marge cypress/results/full_report.json --reportDir cypress/results",
"cy:run-base": "cypress run --env type=base --browser firefox",
"cy:run-actual": "node ./cypress_run_report.cjs",
"cy:run-open": "cypress open --env type=actual",
"cy:open": "npm run cov & start-server-and-test start http-get://localhost:3030 cy:run-open",
"test": "npm run cov && start-server-and-test start http-get://localhost:3030 cy:run-actual",
"base-test": "npm run cov && start-server-and-test start http-get://localhost:3030 cy:run-base"
},
"browser": {
"fs": false,
"path": false,
"os": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dessia-tech/plot_data.git"
},
"keywords": [
"dessia",
"plot-data"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dessia-tech/plot_data/issues"
},
"homepage": "http://dessia.tech/",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^11.0.0",
"@cypress/code-coverage": "^3.12.9",
"@cypress/webpack-preprocessor": "^5.16.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/mocha": "^10.0.1",
"@types/node": "^14.17.23",
"browserify": "^17.0.0",
"cypress": "^13.11.0",
"cypress-localstorage-commands": "^2.2.2",
"cypress-real-events": "^1.7.6",
"cypress-visual-regression": "^2.1.0",
"http-server": "14.1.1",
"import": "^0.0.6",
"jasmine": "^4.5.0",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.2.2",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"source-map-support": "^0.5.21",
"start-server-and-test": "^2.0.4",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.4.4",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"commitlint": "^19.3.0",
"fast-deep-equal": "^3.1.3",
"fs": "^0.0.1-security",
"html-webpack-plugin": "^5.5.0",
"ignore-errors": "^2.0.0",
"rxjs": "^7.8.1",
"ts-loader": "^9.2.6",
"typedoc": "^0.23.28",
"webpack": "^5.75.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}