-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 885 Bytes
/
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
{
"name": "babel-plugin-provide-modules",
"version": "1.0.3",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tomatau/babel-plugin-provide-modules.git"
},
"bugs": {
"url": "https://github.com/tomatau/babel-plugin-provide-modules/issues"
},
"homepage": "https://github.com/tomatau/babel-plugin-provide-modules#readme",
"engines": {
"node": ">=4.x"
},
"license": "MIT",
"scripts": {
"clean": "rm -rf lib",
"build": "babel src/ -d lib/",
"prepublish": "npm run clean && npm run build",
"test": "mocha --compilers js:babel-core/register"
},
"dependencies": {
"lodash": "^4.2.1"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.3.0",
"mocha": "^3.3.0"
}
}