-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.38 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.38 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
{
"name": "cleo-assignment-handler",
"version": "1.0.0",
"description": "handler function",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"./dist/cjs/*": {
"require": "./dist/cjs/*",
"import": "./dist/esm/*"
},
"./dist/esm/*": {
"require": "./dist/cjs/*",
"import": "./dist/esm/*"
},
"./src/*": {
"import": "./src/*"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Ducica/assignment-handler.git"
},
"scripts": {
"test": "jest",
"dev": "nodemon dist/index.js",
"build": "rollup -c",
"lint": "eslint . --ext .ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"esm": "^3.2.25",
"jest": "^29.4.3",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}