-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.84 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
66
67
68
69
70
{
"author": {
"name": "fantasticsoul",
"email": "624313307@qq.com",
"url": "https://github.com/fantasticsoul"
},
"browserify": {
"transform": [
"loose-envify"
]
},
"bugs": {
"url": "https://github.com/tnfe/data-filler/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "make your backend response data shape reliable, with data-filler you can stay away from optional chain",
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^27.0.5",
"prettier": "^2.2.1",
"rollup": "^2.38.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^27.0.3",
"typescript": "^4.1.2"
},
"files": [
"dist",
"lib",
"es",
"src"
],
"homepage": "https://github.com/tnfe/data-filler#readme",
"keywords": [
"data-filler",
"data filler",
"data template"
],
"license": "MIT",
"name": "data-filler",
"main": "dist/data-filler.min.js",
"unpkg": "dist/data-filler.min.js",
"types": "lib/index.d.ts",
"npmName": "data-filler",
"peerDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/tnfe/data-filler.git"
},
"scripts": {
"build": "npm run build:umd & npm run build:umd-min",
"build:umd": "tsc & rollup -c",
"build:umd-min": "tsc & MIN=true rollup -c",
"test": "jest",
"cov": "jest --coverage",
"dev": "tsc --watch",
"lint": "eslint ./src --fix --ext js,ts,tsx",
"pub": "npm publish --registry=https://registry.npmjs.org"
},
"version": "1.0.0",
"dependencies": {}
}