-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 781 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 781 Bytes
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
{
"name": "code-challenges",
"private": true,
"version": "0.1.0",
"author": {
"name": "rigwild",
"email": "me@rigwild.dev",
"url": "https://rigwild.dev"
},
"license": "WTFPL",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "tsc && node dist/index.js",
"copy": "node ../../_copy.js",
"test": "ava --verbose"
},
"dependencies": {
"readline-sync": "^1.4.10"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/readline-sync": "^1.4.4",
"ava": "^3.8.2",
"clipboardy": "^2.3.0",
"terser": "^5.16.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"zx": "^7.1.1"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}