This repository was archived by the owner on Apr 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.68 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "ts-wcwidth",
"version": "0.0.0-placeholder",
"description": "Port of C's wcwidth() and wcswidth()",
"author": "Scott Cooper <[email protected]>",
"license": "MIT",
"repository": "scttcper/ts-wcwidth",
"homepage": "https://ts-wcwidth.vercel.app",
"keywords": [
"wcwidth",
"columns",
"typescript"
],
"main": "dist/index.js",
"module": "dist/module/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build:demo": "rollup -c rollup.demo.js",
"watch:demo": "rollup -c rollup.demo.js -w",
"lint": "eslint --ext .js,.ts, . -f codeframe",
"lint:fix": "eslint --fix --ext .js,.ts, . -f codeframe",
"prepare": "npm run build",
"build": "del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --coverage --no-cache"
},
"dependencies": {},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "7.12.1",
"@babel/preset-typescript": "7.12.7",
"@ctrl/eslint-config": "1.2.7",
"@jest/globals": "26.6.2",
"@types/node": "14.14.10",
"del-cli": "3.0.1",
"jest": "26.6.3",
"rollup": "2.34.2",
"rollup-plugin-livereload": "2.0.0",
"rollup-plugin-serve": "1.1.0",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.29.0",
"typescript": "4.1.2"
},
"jest": {
"testEnvironment": "node"
},
"babel": {
"presets": [
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
},
"release": {
"branch": "master"
},
"engines": {
"node": ">=10.0.0"
}
}