Leaflet/package.json

73 lines
1.5 KiB
JSON
Raw Normal View History

2013-02-01 21:04:33 +08:00
{
"name": "leaflet",
2016-09-30 18:52:53 +08:00
"version": "1.0.1",
"description": "JavaScript library for mobile-friendly interactive maps",
"devDependencies": {
"eslint": "^3.5.0 <3.6.0",
"eslint-config-mourner": "^2.0.1",
2016-04-18 16:10:27 +08:00
"git-rev": "^0.2.1",
"happen": "~0.3.1",
2015-05-08 22:54:34 +08:00
"jake": "~8.0.12",
2016-09-27 18:46:25 +08:00
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
2016-08-09 22:51:17 +08:00
"karma-coverage": "~1.1.1",
2016-06-02 01:10:00 +08:00
"karma-firefox-launcher": "~1.0.0",
2016-09-27 18:46:25 +08:00
"karma-mocha": "^1.2.0",
"karma-phantomjs-launcher": "^1.0.2",
2016-06-02 01:10:00 +08:00
"karma-safari-launcher": "~1.0.0",
2016-09-27 18:46:25 +08:00
"leafdoc": "^1.4.1",
"mocha": "^3.1.0",
"phantomjs-prebuilt": "^2.1.12",
2016-06-02 01:10:00 +08:00
"prosthetic-hand": "^1.3.1",
"source-map": "^0.5.6",
2016-09-27 18:46:25 +08:00
"uglify-js": "~2.7.3"
},
"main": "dist/leaflet-src.js",
"style": "dist/leaflet.css",
"scripts": {
"test": "jake test",
"build": "jake build",
"release": "./build/publish.sh"
},
"eslintConfig": {
2016-06-19 14:51:21 +08:00
"root": true,
"globals": {
"L": true
},
"env": {
"commonjs": true,
"amd": true,
"node": false
},
"extends": "mourner",
"rules": {
2016-09-27 18:46:25 +08:00
"no-mixed-spaces-and-tabs": [
2,
"smart-tabs"
],
"indent": [
2,
"tab",
{
"VariableDeclarator": 0
}
],
"curly": 2,
"spaced-comment": 2,
"strict": 0,
"wrap-iife": 0,
"key-spacing": 0,
"consistent-return": 0
}
},
"repository": {
"type": "git",
"url": "git://github.com/Leaflet/Leaflet.git"
},
"keywords": [
"gis",
"map"
2014-02-05 00:45:03 +08:00
],
"license": "BSD-2-Clause"
2013-02-01 21:04:33 +08:00
}