-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 980 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 980 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
{
"name": "blacktip",
"version": "0.0.1",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -cw",
"unit": "jest",
"lint": "eslint --ext .ts src",
"test": "npm run lint && npm run unit",
"ci": "npm run lint && npm run unit && codecov"
},
"devDependencies": {
"@rollup/plugin-commonjs": "12.0.0",
"@rollup/plugin-json": "4.0.3",
"@rollup/plugin-node-resolve": "8.0.0",
"@rollup/plugin-typescript": "4.1.2",
"@types/jest": "27.4.0",
"@typescript-eslint/eslint-plugin": "2.26.0",
"@typescript-eslint/parser": "2.26.0",
"class-transformer": "0.2.3",
"codecov": "3.8.3",
"core-js": "3.6.4",
"eslint": "6.7.2",
"jest": "27.4.0",
"rollup": "2.10.4",
"rollup-plugin-terser": "5.3.0",
"ts-jest": "27.1.2",
"ts-node": "10.4.0",
"typescript": "3.8.3"
}
}