-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.74 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "react-flicker",
"version": "1.1.1",
"description": "A more annoying substitute for the deprecated blink tag",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"build": "tsc && rm -rf ./dist/stories && npm run cp",
"cp": "npm run cpFlicker && npm run cpJitter && npm run cpJumpAround && npm run cpUtil && npm run cpBlink",
"cpFlicker": "cp lib/components/Flicker/Flicker.d.ts dist/lib/components/Flicker/Flicker.d.ts",
"cpJitter": "cp lib/components/Jitter/Jitter.d.ts dist/lib/components/Jitter/Jitter.d.ts",
"cpBlink": "cp lib/components/Blink/Blink.d.ts dist/lib/components/Blink/Blink.d.ts",
"cpJumpAround": "cp lib/components/JumpAround/JumpAround.d.ts dist/lib/components/JumpAround/JumpAround.d.ts",
"cpUtil": "cp lib/util/util.types.d.ts dist/lib/util/util.types.d.ts",
"new-tag": "git push && git push origin --tags && npm publish",
"major": "npm version major && npm run new-tag",
"minor": "npm version minor && npm run new-tag",
"patch": "npm version patch && npm run new-tag",
"major-clean": "npm install && npm run major && rm -rf node_modules",
"minor-clean": "npm install && npm run minor && rm -rf node_modules",
"patch-clean": "npm install && npm run patch && rm -rf node_modules",
"check-dependencies": "dependency-check ./package.json && dependency-check ./package.json --unused",
"check": "ncu --packageFile package.json",
"evergreen": "ncu -ua --packageFile package.json",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DaemonAlchemist/react-flicker.git"
},
"keywords": [
"TypeScript",
"npm"
],
"author": "DaemonAlchemist",
"license": "MIT",
"bugs": {
"url": "https://github.com/DaemonAlchemist/react-flicker/issues"
},
"homepage": "https://github.com/DaemonAlchemist/react-flicker#readme",
"devDependencies": {
"@babel/core": "^7.8.7",
"@storybook/addon-actions": "^5.3.14",
"@storybook/addon-info": "^5.3.14",
"@storybook/addon-links": "^5.3.14",
"@storybook/addons": "^5.3.14",
"@storybook/react": "^5.3.14",
"@types/jest": "^24.9.1",
"@types/react": "^16.9.23",
"@types/react-redux": "^7.1.7",
"@types/redux": "^3.6.0",
"babel-loader": "^8.0.6",
"dependency-check": "^3.3.0",
"hygen": "^5.0.3",
"jest": "^24.1.0",
"npm-check-updates": "^2.15.0",
"react": "^16.13.0",
"react-docgen-typescript-loader": "^3.6.0",
"ts-jest": "^23.10.5",
"ts-loader": "^6.2.1",
"typescript": "^3.3.1"
},
"dependencies": {
"react-useinterval": "^1.0.1",
"ts-functional": "^1.5.1"
},
"peerDependencies": {
"react": "^16.13.0"
}
}