generated from claeusdev/ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "launch-lever",
"version": "1.2.0",
"description": "A very simple way to manage feature toggles in UI apps",
"main": "build/index.umd.js",
"author": "Nana Adjei Manu",
"license": "MIT",
"files": [
"build"
],
"typings": "build/index.d.ts",
"private": false,
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.10",
"babel-jest": "^27.3.1",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^12.1.2",
"pinst": "^2.1.6",
"prettier": "^2.5.0",
"rollup": "^2.60.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {},
"scripts": {
"build": "tsc -p tsconfig.json && rollup -c rollup.config.js",
"test": "jest",
"test:watch": "yarn test -- --watchAll",
"prebuild": "rm -rf dist && rm -rf build",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git://github.com/claeusdev/launch-lever.git"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"git add"
]
}
}