-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "chemistry-explorer",
"version": "0.8.5",
"type": "module",
"description": "A chemistry app built with vanilla JavaScript",
"main": "index.js",
"scripts": {
"dev": "npx nodemon src/index.js",
"doc": "rm -r documentation; npx jsdoc -c jsdoc.json",
"lint": "npx eslint src/*.js client/*.js client/*/*.js; scripts/check-spelling; npx stylelint \"**/*.css\"",
"test": "time node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smenjas/chemistry-explorer.git"
},
"keywords": [
"chemistry",
"periodic-table",
"isotopes"
],
"author": "Benjamin Thornton",
"license": "ISC",
"bugs": {
"url": "https://github.com/smenjas/chemistry-explorer/issues"
},
"homepage": "https://github.com/smenjas/chemistry-explorer#readme",
"devDependencies": {
"eslint": "^8.38.0",
"jsdoc": "^4.0.2",
"nodemon": "^3.0.1",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}