-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.93 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.93 KB
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": "@novivia/babel",
"role": "babel",
"version": "1.1.0",
"engines": {
"node": ">=4",
"npm": ">=3"
},
"license": "SEE LICENSE IN LICENSE.md",
"description": "Novivia Node.js Babel configurations and utilities.",
"authors": [
"Mathieu M-Gosselin <mathieumg@novivia.com>"
],
"repository": {
"type": "git",
"url": "git@github.com:Novivia/modules.babel.git"
},
"main": "index.js",
"novivia-builder": {
"babelPatterns": [
"config/**/*.js",
"ignoreRegex.js"
]
},
"novivia-linter": {
"targets": {
"global": [
"config",
"lib"
]
}
},
"novivia-tester": {
"coverageLocations": [
"!lib/localRequireHook.js"
],
"coverageThreshold": {
"global": {
"branches": 90
}
}
},
"scripts": {
"build": "novivia-builder build",
"lint": "novivia-linter lint",
"pub": "build-module publish",
"release": "build-module release",
"test": "novivia-tester"
},
"devDependencies": {
"@novivia/build-module": "^0.5.2",
"@novivia/linter": "^1.10.1",
"@novivia/tester": "^1.1.0",
"babel-preset-es2015": "^6.24.1",
"common-tags": "^1.4.0"
},
"dependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-flow-react-proptypes": "^2.1.3",
"babel-plugin-minify-dead-code-elimination": "^0.1.4",
"babel-plugin-minify-replace": "0.0.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-comments": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-typecheck": "^3.9.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"json5": "^0.5.1",
"pkginfo-json5": "^0.5.0",
"react-transform-hmr": "^1.0.4",
"semver": "^5.3.0"
}
}