-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.74 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
52
53
54
55
56
57
58
59
60
{
"name": "react-captcha-code",
"version": "1.0.7",
"description": "基于React和canvas的验证码",
"main": "build/es/index.js",
"types": "build/types/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"clean": "rm -rf build",
"build": "npm run clean && npm run build:esm && npm run build:typings",
"build:cjs": "tsc --module commonjs --outDir build/cjs",
"build:esm": "tsc --module esnext --outDir build/es",
"build:typings": "tsc --outDir build/types --declaration --emitDeclarationOnly",
"build:webpack": "webpack --config webpack.config.js"
},
"keywords": [
"验证码",
"react验证码",
"canvas验证码"
],
"author": {
"email": "[email protected]",
"name": "Miang"
},
"repository": {
"type": "git",
"url": "[email protected]:WebEngineerLi/react-captcha.git"
},
"license": "ISC",
"dependencies": {
"classnames": "^2.2.6",
"lodash": "^4.17.15"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-info": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"@types/classnames": "^2.2.10",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.149",
"babel-loader": "^8.1.0",
"fork-ts-checker-webpack-plugin": "^7.1.1",
"jest": "^25.3.0",
"react-docgen-typescript-loader": "^3.7.2",
"ts-jest": "^25.3.1",
"ts-loader": "^9.2.6",
"typescript": "^3.8.3",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
}
}