-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.44 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
{
"name": "react-yarf",
"version": "1.0.0",
"description": "Yet Another React Flexes",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -d dist",
"lint": "eslint src/**",
"lint:watch": "esw -w lib/**",
"prepublish": "npx standard-version && git push --follow-tags origin master && npm run build",
"postpublish": "npx conventional-github-releaser -p angular -r 0"
},
"author": "Alexey Ponomarev <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0-rc.1",
"@babel/core": "^7.0.0-rc.1",
"@babel/plugin-proposal-class-properties": "^7.0.0-rc.1",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-rc.1",
"@babel/preset-env": "^7.0.0-rc.1",
"@babel/preset-react": "^7.0.0-rc.1",
"@commitlint/cli": "^7.0.0",
"babel-cli": "^7.0.0-beta.3",
"babel-eslint": "^8.2.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.4.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"husky": "^0.14.3",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-to-typescript-definitions": "^1.1.0",
"standard-version": "^4.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}