-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.55 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
72
73
74
75
76
77
{
"name": "@skan-io/babel-config-react",
"private": false,
"version": "0.0.0-semantically-released",
"description": "A configurable @babel config for react applications",
"main": "index.js",
"scripts": {
"default": "run clean test",
"clean": "rimraf ./build",
"build": "run build:*",
"build:babel": "babel src --out-dir build/pkg --ignore '**/*.test.js'",
"build:files": "cp package.json ./README.md ./LICENSE build/pkg/",
"test": "echo 'Need test'",
"lint": "run lint:*",
"lint:js": "eslint --report-unused-disable-directives --ignore-path .gitignore .",
"lint:md": "remark --no-stdout --use remark-lint *.md",
"jest": "jest --runInBand --no-cache ",
"cd": "run clean build release",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skan-io/babel-config-react.git"
},
"author": "Skan Admin <admin@skan.io> (https://skan.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/skan-io/babel-config-react/issues"
},
"homepage": "https://github.com/skan-io/babel-config-react#readme",
"keywords": [
"babel",
"react",
"config"
],
"devDependencies": {
"@skan-io/babel-config-nodejs": "1.0.1",
"@skan-io/eslint-config-base": "1.0.3",
"@skan-io/jest-config-base": "1.1.0",
"@skan-io/release-config": "1.0.1",
"@skan-io/remark-config": "1.0.1",
"cz-conventional-changelog": "2.1.0",
"npx-run": "2.1.2",
"rimraf": "2.6.3"
},
"dependencies": {
"@babel/cli": "7.4.3",
"@babel/core": "7.4.3",
"@babel/node": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-proposal-decorators": "7.4.0",
"@babel/plugin-proposal-do-expressions": "7.2.0",
"@babel/plugin-proposal-numeric-separator": "7.2.0",
"@babel/plugin-proposal-optional-catch-binding": "7.2.0",
"@babel/plugin-proposal-optional-chaining": "7.2.0",
"@babel/plugin-proposal-pipeline-operator": "7.3.2",
"@babel/plugin-proposal-throw-expressions": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-runtime": "7.4.3",
"@babel/polyfill": "7.4.3",
"@babel/preset-env": "7.4.3",
"@babel/preset-react": "7.0.0",
"@babel/runtime": "7.4.3",
"babel-plugin-dynamic-import-node": "2.2.0",
"babel-plugin-macros": "2.5.1",
"babel-plugin-transform-amd-to-commonjs": "1.4.0",
"core-js": "^3.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}