-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 881 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
36
37
38
{
"name": "@origen-studio/babel-plugin-remove-import-js-extension",
"version": "0.0.4",
"description": "Remove .js and .jsx extensions from `import` statements",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build": "babel src -d lib",
"prepublish": "npm run build"
},
"keywords": [
"babel",
"babel-plugin",
"import"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dcamilleri/babel-plugin-remove-import-js-extension.git"
},
"author": "Dorian CAMILLERI <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.14.0",
"babel-jest": "^15.0.0",
"babel-preset-es2015": "^6.14.0",
"jest": "^15.0.0",
"standard": "^8.0.0"
},
"standard": {
"globals": [
"jest",
"describe",
"it",
"expect"
]
}
}