forked from tschaub/projzh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 936 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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "projzh",
"version": "0.5.0",
"description": "Utilities for working with Chinese coordinate reference systems",
"keywords": [
"baidu",
"mercator",
"bd-09",
"gcj-02",
"projection",
"datum",
"transform",
"china"
],
"repository": {
"type": "git",
"url": "git://github.com/tschaub/projzh.git"
},
"bugs": {
"url": "https://github.com/tschaub/projzh/issues"
},
"license": "GPL-3.0",
"main": "index.js",
"devDependencies": {
"browserify": "^13.0.0",
"code": "^3.0.0",
"eslint": "^3.3.0",
"eslint-config-tschaub": "^5.0.0",
"lab": "^11.1.0",
"uglify-js": "^2.6.2"
},
"scripts": {
"pretest": "eslint . --ignore-pattern *.min.js",
"test": "lab test",
"prepublish": "npm run bundle",
"bundle": "browserify --standalone projzh index.js | uglifyjs --output index.min.js"
},
"eslintConfig": {
"extends": "tschaub"
}
}