-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.37 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.37 KB
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
{
"author": {
"email": "gajus@gajus.com",
"name": "Gajus Kuizinas"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register"
]
},
"dependencies": {
"camelcase": "^4.0.0"
},
"description": "Babel plugin that transforms default exports to named exports.",
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-plugin-transform-es2015-block-scoping": "^6.18.0",
"babel-plugin-transform-es2015-destructuring": "^6.19.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-es2015-parameters": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"eslint": "^3.11.1",
"eslint-config-canonical": "^5.8.0",
"flow-bin": "^0.36.0",
"husky": "^0.11.9"
},
"keywords": [
"babel-plugin"
],
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"name": "babel-plugin-transform-export-default-name",
"repository": {
"type": "git",
"url": "https://github.com/gajus/babel-plugin-transform-export-default-name.git"
},
"scripts": {
"build": "NODE_ENV=production babel ./src --out-dir ./dist --copy-files",
"lint": "eslint ./src ./test",
"precommit": "npm run lint && npm run test",
"test": "npm run build && npm run lint && flow && NODE_ENV=development ava --test"
},
"version": "2.0.2"
}