-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.4 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": "wsbot",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"keywords": [
"wsbot",
"wsdot",
"anacortes",
"orcas",
"ferry",
"bot",
"selenium"
],
"author": "",
"license": "ISC",
"scripts": {
"clean": "rimraf dist",
"transpile": "babel ./src --out-dir dist --extensions '.ts,.tsx'",
"build": "npm run clean && npm run transpile",
"start": "npm run build && node ./dist",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon"
},
"dependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/runtime": "^7.14.6",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"selenium-webdriver": "^4.0.0-beta.4",
"winston": "^3.3.3"
},
"nodemonConfig": {
"exec": "npm run start",
"ext": "js, json, ts",
"watch": [
"src"
],
"ignore": [
"**/__tests__/**",
"*.test.js",
"*.spec.js"
]
},
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/selenium-webdriver": "^4.0.13",
"babel-plugin-transform-runtime": "^6.23.0",
"tslint": "^6.1.3",
"typescript": "^4.3.3"
}
}