-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 865 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-replace-object-assign",
"version": "0.0.2",
"description": "Allows you to replace Object.assign with simple polyfill",
"repository": {
"type": "git",
"url": "https://github.com/cxtom/babel-plugin-replace-object-assign"
},
"author": "cxtom <[email protected]> (https://github.com/cxtom)",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"test": "istanbul test _mocha",
"prebuild": "rm -rf lib/",
"build": "babel src --out-dir lib",
"prepublish": "npm run build"
},
"keywords": [
"assign",
"babel",
"babel-plugin"
],
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"simple-assign": "0.1.0"
},
"dependencies": {
"babel-template": "^6.26.0"
}
}