-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.29 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
{
"name": "polynomial-interpolation-web-gui",
"version": "0.0.1",
"private": true,
"description": "Polynomial Interpolation Web GUI with GeoGebra",
"keywords": [
"web",
"app",
"gui",
"interpolation",
"polynomial",
"geogebra"
],
"renovate": {
"extends": [
"config:base"
]
},
"dependencies": {},
"devDependencies": {
"babel-eslint": "10.1.0",
"compare-versions": "3.6.0",
"cypress": "7.0.0",
"eslint": "7.23.0",
"eslint-plugin-cypress": "2.11.2",
"http-server": "0.12.3"
},
"scripts": {
"start": "http-server src -c-1",
"test": "npm run e2e",
"lint": "eslint src/**/*.js test/**/*.js",
"e2e": "npm run cy:run",
"cy:verify": "cypress verify",
"cy:version": "cypress version",
"cy:run": "cypress run --browser chrome",
"cy:open": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ComFreek/polynomial-interpolation-web-gui.git"
},
"author": {
"name": "ComFreek",
"url": "https://github.com/ComFreek"
},
"contributors": [
{
"name": "ComFreek",
"url": "https://github.com/ComFreek"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/ComFreek/polynomial-interpolation-web-gui/issues"
},
"homepage": "https://github.com/ComFreek/polynomial-interpolation-web-gui#readme",
"engines": {
"node": "*"
}
}