-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.54 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
88
{
"name": "cse112_team15",
"version": "1.1.0",
"description": "Necessary Packages for Development",
"main": "index.js",
"scripts": {
"start": " npx http-server -c-1",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test-nc": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint-js": "eslint --fix --no-error-on-unmatched-pattern --ext .js,.jsx .",
"lint-js:test": "eslint --no-error-on-unmatched-pattern --ext .js,.jsx .",
"lint-css": "stylelint **/*.css !**/node_modules/** --allow-empty-input --fix",
"lint-css:test": "stylelint **/*.css !**/node_modules/** --allow-empty-input --fix",
"lint": "npm run lint-js && npm run lint-css",
"lint:test": "npm run lint-js:test && npm run lint-css:test",
"branch": "chmod 777 ./.github/scripts/branch.sh && ./.github/scripts/branch.sh",
"doc": "./node_modules/.bin/esdoc && ./node_modules/.bin/esdoc -test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nickkro25/cse112_team15.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nickkro25/cse112_team15/issues"
},
"homepage": "https://github.com/nickkro25/cse112_team15",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.12.13",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.2.0",
"@semantic-release/release-notes-generator": "^9.0.2",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"http-server": "^0.12.3",
"jest": "^26.6.3",
"jest-environment-node": "^26.6.2",
"semantic-release": "^17.4.2",
"stylelint": "^13.9.0",
"stylelint-config-standard": "^20.0.0"
},
"babel": {
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 60,
"statements": -30
}
}
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
{
"path": "js/*.js",
"label": "JS distribution"
}
]
}
]
]
},
"dependencies": {
"intro.js": "^3.3.1"
}
}