-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.28 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.28 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "riot-google-maps",
"version": "0.0.3",
"description": "riotjs google maps integration",
"main": "riot-google-maps.js",
"scripts": {
"clean": "rimraf ./riot-google-maps.js ./riot-google-maps.min.js",
"build:lib": "browserify -x riot -t babelify -t riotify --type es6 src/index.js > riot-google-maps.js",
"build:addons": "browserify -x riot -t babelify -t riotify --type es6 src/addons/InfoBox.js > addons/riot-google-maps.infobox.js",
"build:min": "uglifyjs -c -m -o riot-google-maps.min.js riot-google-maps.js",
"prebuild": "npm test && npm run clean",
"build": "npm run build:lib && npm run build:addons && npm run build:min",
"test": "./node_modules/karma/bin/karma start karma.conf.js",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build -g nilpath/riot-google-maps",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push git@github.com:nilpath/riot-google-maps.git gh-pages --force"
},
"keywords": [
"riotjs",
"riot",
"google",
"maps",
"google-map",
"google-maps"
],
"author": "Christoffer Ahrling",
"license": "MIT",
"devDependencies": {
"babel": "^5.8.23",
"babelify": "^6.4.0",
"browserify": "^11.2.0",
"browserify-shim": "^3.8.10",
"expect.js": "^0.3.1",
"gitbook-cli": "^1.0.0",
"karma": "^0.13.9",
"karma-browserify": "^4.4.0",
"karma-chrome-launcher": "^0.2.1",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-riot": "^1.0.1",
"karma-sinon": "^1.0.4",
"mocha": "^2.4.5",
"phantomjs": "^1.9.19",
"phantomjs-polyfill": "0.0.1",
"rimraf": "^2.4.3",
"riotify": "^0.1.2",
"sinon": "^1.17.2",
"uglify-js": "^2.5.0"
},
"dependencies": {
"equals": "^1.0.1",
"es6-object-assign": "^1.0.1",
"google-maps-infobox": "^1.1.13",
"riot": "2.3.11"
},
"browserify-shim": {
"riot": "global:riot"
},
"browserify": {
"transform": [
"browserify-shim"
]
}
}