-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "javascript-automated-task",
"version": "0.2.0",
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"umd:main": "build/umd/index.js",
"scripts": {
"playground": "ts-node ./tests/playground.ts",
"nodemon": "nodemon ./tests/playground.ts",
"test": "npm run build:umd && ts-mocha --timeout 100000 tests/**/*.spec.ts -w --watch-files '**/*.ts'",
"test-puppeteer": "npm run build:umd && ts-mocha --timeout 100000 tests/puppeteer.spec.ts -w --watch-files '**/*.ts'",
"test-persistence": "ts-mocha --timeout 100000 tests/persistence/persistence.spec.ts -w --watch-files '**/*.ts'",
"start": "tsc --watch",
"build": "npm run build:cjs && npm run build:esm && npm run build:umd",
"build:cjs": "node cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node cleanup esm && tsc -p config/tsconfig.esm.json",
"build:umd": "node cleanup umd && webpack --config config/webpack.config.js",
"watch": "node cleanup umd && webpack --watch --config config/webpack.config.js",
"prepare": "npm run build"
},
"author": "ibrod83",
"license": "ISC",
"description": "A Javascript/Typescript utility to repeat tasks",
"keywords": [
"automation",
"repetition",
"javascript",
"automated",
"task"
],
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.5",
"expect": "^28.1.3",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"nodemon": "^2.0.21",
"puppeteer": "^19.8.3",
"tree-kill": "^1.2.2",
"ts-loader": "^9.4.2",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.76.2",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.13.1"
},
"homepage": "https://github.com/ibrod83/javascript-automated-task",
"bugs": {
"url": "https://github.com/ibrod83/javascript-automated-task/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ibrod83/javascript-automated-task.git"
}
}