-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.15 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.15 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
{
"name": "@vemuruadi/node-lib-ts",
"version": "1.0.2",
"description": "Starter for Node.js libraries with TypeScript",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"scripts": {
"build": "rollup -c",
"lint": "standard",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/vemuruadi/node-lib-ts.git"
},
"files": [
"build"
],
"devDependencies": {
"@types/jest": "^26.0.22",
"jest": "^26.6.3",
"rollup": "^2.45.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"eslintConfig": {
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
},
"keywords": [
"node.js",
"typescript",
"library"
],
"homepage": "https://github.com/vemuruadi/node-lib-ts#readme",
"author": "Adi Vemuru",
"license": "MIT"
}