-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.46 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "flo-utils",
"version": "0.8.3",
"description": "some utils ",
"main": "lib/index.js",
"module": "es/index.js",
"unpkg": "dist/floUtils.js",
"files": [
"lib",
"es",
"dist"
],
"scripts": {
"test": "npm run lint && npm run unit",
"unit": "jest --no-cache",
"lint": "eslint --fix --cache --ext .js --format=pretty src",
"lint-staged": "lint-staged",
"prettier": "prettier -c --write \"**/**\"",
"dist": "fire-tools run dist",
"build": "npm run compile && npm run dist",
"ready": "npm run test && npm run build",
"compile": "fire-tools run compile",
"release": "npm run ready && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FireLeafone/FL-utils.git"
},
"keywords": [
"utils",
"flo"
],
"author": "narutone",
"license": "MIT",
"bugs": {
"url": "https://github.com/FireLeafone/FL-utils/issues"
},
"homepage": "https://github.com/FireLeafone/FL-utils#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts}": [
"prettier --write",
"npm run lint",
"git add"
]
},
"dependencies": {
"lodash": "^4.17.21",
"moment": "^2.27.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/runtime": "^7.11.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-lodash": "^3.3.4",
"chalk": "^4.1.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-unicorn": "^21.0.0",
"fire-tools": "^0.1.3",
"husky": "^4.2.5",
"jest": "^26.4.1",
"lint-staged": "^10.2.11",
"lodash-webpack-plugin": "^0.11.5",
"ora": "^5.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"peerDependencies": {
"lodash": "^4.17.20",
"moment": "^2.27.0"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}