-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 791 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 791 Bytes
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
{
"name": "quaint-google-maps",
"description": "Embed Google Maps in Quaint documents",
"version": "0.1.0",
"format": "cjs",
"repository": {
"type": "git",
"url": "https://github.com/breuleux/quaint-google-maps"
},
"keywords": [
"quaint",
"quaint-plugin"
],
"author": "Olivier Breuleux",
"license": "MIT",
"main": "./lib/index.js",
"dependencies": {
"chalk": "^1.1.1",
"earlgrey-runtime": "^0.1.0",
"inquirer-shortcuts": "^1.1.0"
},
"devDependencies": {
"earl-mocha": ">=0.0.3",
"earlgrey": "^0.1.0",
"mocha": "^2.2.1",
"quaint": ">=0.0.15"
},
"scripts": {
"refresh": "earl compile -5vso lib/ src/",
"compile": "earl compile -5rvso lib/ src/",
"prepublish": "npm run compile",
"test": "mocha"
}
}