-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 831 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
{
"name": "go-quick-import",
"main": "./lib/go-quick-import",
"version": "0.3.1",
"description": "Quickly add and remove imports without losing your place when editing.",
"keywords": [
"go",
"import"
],
"scripts": {
"prepublish": "babel src -d lib -s && cd src && gopherjs build -o ../lib/modimport.js"
},
"repository": "https://github.com/mastercactapus/atom-go-quick-import",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-space-pen-views": "^2.1.0",
"babel-polyfill": "^6.3.14",
"glob": "^7.1.1"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-flow-comments": "^6.3.23",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-1": "^6.3.13"
}
}