-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 838 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
35
{
"name": "babel-plugin-transform-lodash-get",
"version": "1.0.7",
"description": "Babel plugin to statically optimize lodash/get",
"repository": "github:Ambyjkl/babel-plugin-transform-lodash-get",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"lint": "eslint src/*.js test/*.js",
"test": "nyc --reporter=html --reporter=text ava",
"bench": "node misc/bench.js"
},
"author": "Ambareesh Balaji <ambareeshbalaji@gmail.com>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.0.0",
"ava": "1.0.0-beta.8",
"benchmark": "^2.1.4",
"eslint": "^5.5.0",
"lodash": "^4.17.10",
"nyc": "^13.0.1"
},
"ava": {
"babel": false
},
"keywords": [
"babel",
"plugin",
"lodash",
"get",
"transform",
"performance",
"optimize"
]
}