-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.79 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
{
"name": "user-routine",
"version": "5.1.2",
"description": "User-Routine is a JavaScript library to automate user routines on web pages. You can easily test features or create tutorials with actions such as click, await, and fill.",
"main": "./lib/user-routine.min.js",
"types": "./lib/user-routine.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run build-lib && npm run build-blob && npm run build-template && npm run build-demo",
"build-blob": "webpack --config webpack.config.blob.cjs",
"build-demo": "node utils/update-demo-pre.cjs && webpack --config webpack.config.demo.cjs && node utils/update-demo-post.cjs",
"build-lib": "webpack --config webpack.config.min.cjs",
"build-local": "npm run build-lib && npm run build-demo",
"build-template": "node utils/make-template.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoryLR/user-routine.git"
},
"author": "Cory Leigh Rahman",
"license": "MIT",
"bugs": {
"url": "https://github.com/CoryLR/user-routine/issues"
},
"homepage": "https://corylr.github.io/user-routine/",
"keywords": [
"JavaScript",
"SPA",
"Single-page application",
"TypeScript",
"automated test",
"check",
"click",
"e2e",
"end to end",
"spa-check",
"test",
"tutorial",
"user-routine"
],
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.2.0",
"css-loader": "^6.7.1",
"flickity": "^3.0.0",
"flickity-hash": "^2.0.1",
"highlight.js": "^11.6.0",
"html-webpack-plugin": "^5.5.0",
"minify": "^9.1.0",
"node-html-parser": "^6.1.1",
"open": "^8.4.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}