-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.99 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "react-konfettikanone",
"version": "1.0.0",
"description": "Hooray – celebration everywhere!",
"main": "lib/index.js",
"module": "lib/index.module.js",
"scripts": {
"start": "parcel serve examples/index.html -d tmp",
"build": "rollup -c rollup.config.ts",
"test": "jest",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/spurtli/react-konfettikanone.git"
},
"keywords": [
"react",
"confetti",
"celebrate"
],
"author": "Neele Barthel <hello@neele.codes>",
"license": "MIT",
"bugs": {
"url": "https://github.com/spurtli/react-konfettikanone/issues"
},
"homepage": "https://github.com/spurtli/react-konfettikanone#readme",
"dependencies": {
"classnames": "^2.2.6",
"emotion": "^10.0.23"
},
"peerDependencies": {
"react": "^16.13.0",
"react-dom": "^16.13.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/classnames": "^2.2.10",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.23",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.1.0",
"cz-conventional-changelog": "3.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^25.1.0",
"parcel-bundler": "^1.12.4",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"rollup": "^2.0.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.26.0",
"rollup-plugin-uglify": "^6.0.4",
"semantic-release": "^17.0.4",
"travis-deploy-once": "^5.0.11",
"typescript": "^3.8.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}