-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.24 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
{
"name": "babel-plugin-destructuring-with-null",
"version": "0.0.1",
"description": "A babel plugin to enhance deconstruction even with null",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint . ",
"lint:fix": "npm run lint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Army-U/babel-plugin-destructuring-with-null.git"
},
"author": "Army-U <wuchengkai0@gmail.com>",
"bugs": {
"url": "https://github.com/Army-U/babel-plugin-destructuring-with-null/issues"
},
"homepage": "https://github.com/Army-U/babel-plugin-destructuring-with-null#readme",
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "7.0.0-beta.40",
"@babel/preset-env": "7.0.0-beta.40",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "7.2.3",
"eslint": "4.17.0",
"eslint-config-standard": "11.0.0-beta.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "6.0.0",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1",
"glob": "7.1.2",
"jest": "22.4.2",
"regenerator-runtime": "0.11.1"
},
"dependencies": {
"@babel/core": "7.0.0-beta.40",
"@babel/helper-module-imports": "7.0.0-beta.40"
}
}