-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.55 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
{
"name": "tformat.js",
"version": "1.1.1",
"description": "lightweight library for formatting input values",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist",
"tformat.js",
"tformat.min.js"
],
"types": "dist/types.d.ts",
"scripts": {
"test": "jest",
"build": "rollup -c"
},
"jest": {
"testEnvironment": "jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QCplus/tformat.git"
},
"keywords": [
"js",
"javascript",
"input",
"format",
"formatter",
"vanilla",
"react"
],
"author": "qcplus",
"license": "ISC",
"bugs": {
"url": "https://github.com/QCplus/tformat/issues"
},
"homepage": "https://github.com/QCplus/tformat#readme",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.0.1",
"@rollup/plugin-typescript": "^8.3.0",
"@testing-library/dom": "^8.11.2",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.38",
"babel-jest": "^27.4.6",
"jest": "^27.4.7",
"react": "^17.0.2",
"rollup": "^2.63.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}