-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.83 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
{
"name": "@rispa/babel",
"rispa:name": "babel",
"version": "4.2.1",
"description": "Rispa Babel plugin",
"license": "MIT",
"rispa:activator": "./lib/activator.js",
"main": "./lib/BabelPluginApi.js",
"typings": "./lib/BabelPluginApi.d.ts",
"devDependencies": {
"@rispa/tslint-config": ">=1.0.0",
"jest": "^20.0.3",
"typescript": "^2.5.3",
"@types/node": "8.0.31",
"@types/babel-core": "6.25.3",
"tslint": "^5.7.0"
},
"dependencies": {
"@rispa/core": "4.2.x",
"@rispa/config": "4.2.x",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-dynamic-import-webpack": "1.0.1",
"babel-plugin-transform-react-constant-elements": "6.23.0",
"babel-plugin-transform-react-inline-elements": "6.22.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.9",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-plugin-transform-react-display-name": "6.23.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-plugin-transform-imports": "1.4.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-es2016": "6.24.1",
"babel-preset-es2017": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-runtime": "6.26.0",
"babel-core": "6.26.0",
"babel-merge": "1.1.0",
"react-hot-loader": "3.0.0-beta.7"
},
"scripts": {
"compile": "tsc",
"lint": "tslint --type-check -p tsconfig.json",
"lint:fix": "tslint --fix --type-check -p tsconfig.json"
},
"jest": {
"collectCoverageFrom": [
"**/*.js"
],
"coveragePathIgnorePatterns": [
"/coverage/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}