-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.4 KB
/
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
39
40
41
42
43
{
"name": "leaflet-editable-textbox",
"version": "1.0.20",
"description": "TextBox for Leaflet.Editable",
"main": "index.js",
"scripts": {
"test": "browserify tests/*.test.js | tape-run",
"watch": "watchify -v -d -s L.Editable.Textbox ./demo/js/index.js -o ./demo/js/build.js",
"build-js": "browserify -v -d -s L.Editable.Textbox -u leaflet -u leaflet-editable ./index.js -o ./dist/L.Editable.Textbox-src.js",
"compress": "uglifyjs ./dist/L.Editable.Textbox-src.js -o ./dist/L.Editable.Textbox.js --comments -m",
"serve": "serve -p 3002",
"lint": "eslint index.js && eslint ./src/",
"build": "npm run lint && npm run build-js && npm run compress",
"start": "npm run watch & npm run serve"
},
"author": "rumax",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rumax/Leaflet.Editable.TextBox.git"
},
"dependencies": {
"leaflet-path-transform": "^1.0.0-beta.4"
},
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"browser-filesaver": "^1.1.1",
"browserify": "^13.0.0",
"eslint": "^2.8.0",
"faucet": "0.0.1",
"leaflet": "^1.0.0-rc.3",
"leaflet-editable": "^1.0.0-rc.1",
"leaflet-schematic": "^1.0.0-beta.1",
"rimraf": "*",
"serve": "^1.4.0",
"tape": "^4.6.0",
"tape-run": "^2.1.4",
"uglifyjs": "^2.4.10",
"watchify": "^3.7.0",
"xhr": "^2.2.0"
}
}