-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.62 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
{
"version": "0.0.2",
"name": "babel-plugin-webpack-modules",
"description": "babel 6 plugin which allows to use webpack modules",
"main": "build/index.js",
"scripts": {
"build": "babel src -d build",
"dev": "watch 'npm run build' src/",
"lint": "eslint src/ test/",
"test": "ava",
"prepublish": "npm run build"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/rasch-dtc/babel-plugin-webpack-modules/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/rasch-dtc/babel-plugin-webpack-modules.git"
},
"author": "Remo Vetere <[email protected]>",
"homepage": "https://github.com/rasch-dtc/babel-plugin-webpack-modules#readme",
"devDependencies": {
"ava": "^0.14.0",
"babel-core": "^6.6.0",
"babel-plugin-transform-es2015-destructuring": "^6.6.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.6.0",
"babel-plugin-transform-es2015-parameters": "^6.6.0",
"babel-plugin-transform-es2015-spread": "^6.5.2",
"babel-plugin-transform-export-extensions": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-plugin-transform-strict-mode": "^6.5.2",
"babel-register": "^6.5.2",
"eslint": "^2.0.0",
"estraverse-fb": "^1.3.1",
"watch": "^0.18.0"
},
"keywords": [
"babel",
"webpack",
"modules",
"mocha",
"testing"
],
"ava": {
"files": [
"test/**/*.spec.js"
],
"require": [
"babel-register"
]
},
"dependencies": {
"babel-cli": "^6.5.1",
"babel-types": "^6.5.2",
"find-up": "^1.1.2"
}
}