This repository has been archived by the owner on Jan 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
84 lines (84 loc) · 2.54 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "node-project-template",
"version": "1.0.0",
"description": "A node project template",
"license": "BSD-2-Clause",
"private": true,
"author": "terrestris GmbH & Co. KG <[email protected]>",
"contributors": [
{
"name": "Daniel Koch",
"email": "[email protected]",
"url": "https://github.com/dnlkoch"
},
{
"name": "Marc Jansen",
"email": "[email protected]",
"url": "https://github.com/marcjansen"
}
],
"keywords": [
"gis",
"webgis",
"mapping",
"cartography",
"openlayers"
],
"repository": {
"type": "git",
"url": "https://github.com/terrestris/node-project-template.git"
},
"files": [
"src"
],
"scripts": {
"clean": "rimraf ./build/* ./coverage/*",
"pretest": "npm run lint",
"test": "npm run clean && BABEL_ENV=coverage karma start karma.conf.js --single-run",
"coveralls": "cat coverage/lcov.info | coveralls",
"test:watch": "karma start karma.conf.js",
"lint": "eslint --ext js,html,md example-templates/ examples/ src/ spec/",
"start": "webpack-dev-server --config webpack.examples.config.js --content-base ./build/ --hot",
"build:examples": "node tasks/build-examples.js",
"build:docs": "jsdoc --package ./package.json --readme ./README.md -c .jsdoc",
"build:js": "webpack --config webpack.development.config.js && webpack -p --config webpack.production.config.js",
"build": "npm run test && npm run build:examples && npm run build:docs && npm run build:js"
},
"dependencies": {
"ol": "4.6.5"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-eslint": "8.2.3",
"babel-loader": "7.1.4",
"babel-plugin-istanbul": "4.1.6",
"babel-preset-es2015": "6.24.1",
"coveralls": "3.0.0",
"eslint": "4.19.1",
"eslint-plugin-html": "4.0.3",
"eslint-plugin-markdown": "1.0.0-beta.7",
"expect.js": "0.3.1",
"ink-docstrap": "1.3.2",
"jsdoc": "3.5.5",
"jsdoc-babel": "0.4.0",
"karma": "2.0.2",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "1.0.1",
"karma-coverage": "1.1.2",
"karma-firefox-launcher": "1.1.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"karma-phantomjs-launcher": "1.0.4",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.9",
"metalsmith": "2.3.0",
"metalsmith-collections": "0.9.0",
"metalsmith-layouts": "2.1.0",
"metalsmith-markdown": "0.2.1",
"minami": "1.2.3",
"mocha": "5.1.1",
"rimraf": "2.6.2",
"webpack": "3.11.0",
"webpack-dev-server": "3.1.4"
}
}