-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (43 loc) · 1.49 KB
/
package.json
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
{
"completed": true,
"name": "@flighter/type",
"version": "1.0.0",
"description": "One more library for defining types",
"license": "MIT",
"author": "FLighter",
"repository": "github:FLighter7/type",
"keywords": ["type", "check", "is", "typeof", "types", "number", "string", "boolean"],
"main": "esm/index.js",
"types": "esm/index.d.ts",
"files": ["esm", "umd"],
"type": "module",
"scripts": {
"start": "npm-run-all -s check build:* test",
"check": "eslint src/*.ts",
"test": "jest",
"build:esm": "del-cli esm/* && tsc",
"build:umd": "del-cli umd/* && tsc --project tsconfig.umd.json && renamer -s -f /\\.js$/ -r .cjs -e ext umd/* && replace '\\.js' '.cjs' ./umd -r --silent --exclude='*.d.ts'",
"build:iife": "del-cli download/* && rollup -c"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"del-cli": "^3.0.1",
"typescript": "^4.2.4",
"ts-node": "^9.1.1",
"renamer": "^3.2.1",
"replace": "^1.2.1",
"rollup": "^2.42.4",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-terser": "^7.0.2",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"@types/jest": "^26.0.21",
"pretty-format": "^26.6.2",
"eslint": "^7.22.0",
"eslint-config-google": "^0.14.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0"
}
}