-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (47 loc) · 1.26 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
{
"name": "my-utils",
"version": "0.1.1",
"description": "provide some function like lodash",
"main": "./lib/index.js",
"scripts": {
"build": "tsc",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"prettier": "prettier src/index.ts --write",
"tslint": "tslint -c tslint.json --fix --force src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/galenjiang/utils.git"
},
"keywords": [
"utils"
],
"author": "galen",
"license": "MIT",
"bugs": {
"url": "https://github.com/galenjiang/utils/issues"
},
"homepage": "https://github.com/galenjiang/utils#readme",
"devDependencies": {
"@types/chai": "^4.0.2",
"@types/lodash": "^4.14.72",
"@types/mocha": "^2.2.41",
"babel-cli": "^7.0.0-alpha.20",
"babel-generator": "^6.26.0",
"babel-helpers": "^6.24.1",
"babel-plugin-syntax-typescript": "^7.0.0-alpha.19",
"babel-preset-typescript": "^7.0.0-alpha.19",
"babel-types": "^6.26.0",
"chai": "^3.5.0",
"mocha": "^3.5.0",
"prettier": "^1.7.2",
"ts-node": "^3.3.0",
"tslint": "^5.5.0",
"tslint-config-airbnb": "^5.3.0",
"tslint-config-prettier": "^1.5.0",
"typescript": "^2.4.2"
},
"peerDependencies": {
"lodash": "^4.17.4"
}
}