-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"name": "babel-plugin-transform-n4js-systemjs-commonjs",
"description": "A babel plugin to transform N4JS SystemJS modules into CommonJS, enabling webpack (via babel-loader) or react-native packager.",
"main": "transform-n4js-systemjs-commonjs.js",
"scripts": {
"test": "eslint . && mocha tests",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"engines": {
"node": ">=6.4.0"
},
"files": [
"transform-n4js-systemjs-commonjs.js"
],
"keywords": [
"n4js",
"babel",
"loader",
"babel-plugin"
],
"author": "Daniel Bölzle",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dbo/babel-plugin-transform-n4js-systemjs-commonjs.git"
},
"devDependencies": {
"@babel/core": "^7.0.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.6.0",
"mocha": "^5.2.0",
"semantic-release": "^15.9.15",
"travis-deploy-once": "^5.0.7"
},
"eslintConfig": {
"env": {
"es6": true
},
"extends": "eslint:recommended",
"rules": {
"strict": "error",
"no-trailing-spaces": "error"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"lodash": "^4.17.11",
"@babel/helper-plugin-utils": "^7.0.0"
},
"version": "0.0.0-development"
}