-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.2 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.2 KB
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
{
"name": "@keisei77/fluffy",
"version": "0.1.4",
"description": "Misc helpful functions to make your life better.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"test": "jest",
"prepublish": "tsc",
"build": "npm run clean && parcel build src/index.ts -d lib"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"files": [
"lib",
"src"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/keisei77/fluffy.git"
},
"keywords": [
"misc functions"
],
"author": "Keisei Jia",
"license": "MIT",
"bugs": {
"url": "https://github.com/keisei77/fluffy/issues"
},
"homepage": "https://github.com/keisei77/fluffy#readme",
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.15",
"babel-jest": "^24.8.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"parcel-bundler": "^1.12.3",
"prettier": "1.18.2",
"pretty-quick": "^1.11.1",
"rimraf": "^2.6.3",
"typescript": "^3.5.3"
}
}