forked from bibixx/react-adobe-animate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.65 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
{
"name": "react-adobe-animate",
"version": "0.0.0-development",
"description": "React component that helps embed Adobe Animate's animations into your project.",
"main": "build/index.js",
"scripts": {
"start": "NODE_ENV=production webpack --watch --mode development",
"lint": "eslint src/*",
"build": "webpack --mode production",
"cz": "git-cz",
"semantic-release": "semantic-release"
},
"author": {
"name": "Bartosz Legięć",
"email": "bartosz@legiec.eu",
"url": "https://legiec.io"
},
"repository": {
"type": "git",
"url": "https://github.com/bibixx/react-adobe-animate"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"husky": "^3.0.4",
"semantic-release": "^15.13.24",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.4.1"
},
"keywords": [
"react",
"adobe",
"adobe animate"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"publishConfig": {
"access": "public"
}
}