forked from powrrfulyang/utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 959 Bytes
/
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
{
"name": "@powerfulyang/utils",
"version": "0.7.14",
"description": "common utils",
"main": "dist/main/index.js",
"module": "dist/module/index.js",
"sideEffects": false,
"author": {
"name": "powerfulyang"
},
"repository": "https://github.com/powerfulyang/tools",
"license": "MIT",
"keywords": [
"utils"
],
"files": [
"dist"
],
"browserslist": [
"last 2 versions"
],
"scripts": {
"build": "rimraf dist && run-p build:*",
"build:main": "tsc -p tsconfig.main.json",
"build:module": "tsc -p tsconfig.module.json",
"watch:build": "rimraf dist && tsc -p tsconfig.main.json --watch",
"prettier": "prettier \"src/**/*.ts\" --write",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"test": "jest"
},
"devDependencies": {
"@powerfulyang/lint": "^0.2.12",
"@types/ip": "^1.1.0"
},
"dependencies": {
"ip": "^1.1.5",
"reflect-metadata": "^0.1.13"
}
}