-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.05 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.05 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
{
"name": "nuix-javascript-class",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "http-server --port 2000 --cors",
"rest-server": "rest-server start",
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "eslint src --ext=js",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier -c src/",
"prettier:fix": "prettier -c --write src/"
},
"author": "John Paxton <pax@speedingplanet.com>",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/eslint-plugin": "^7.14.5",
"@babel/preset-env": "^7.15.0",
"bootstrap": "^5.1.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"http-server": "^13.0.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"prettier": "^2.3.2"
}
}