This repository has been archived by the owner on Feb 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.89 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
{
"name": "angular-leaflet-light",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/toutpt/angular-leaflet-light.git"
},
"main": "src/index.js",
"scripts": {
"test": "karma start karma/karma.travis.conf.js --single-run",
"build": "webpack && webpack --config webpack.config.min.js",
"dev": "webpack-dev-server --watch",
"gh-pages": "rm -rf gh-pages/dist && rm -rf gh-pages/coverage && webpack && mv dist gh-pages/ && cp -R coverage/Phant*/lcov-report gh-pages/coverage",
"prepublish": "webpack && webpack --config webpack.config.min.js",
"coveralls": "npm run test && ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"docs": "jsdoc -c docs.json -t ./node_modules/ink-docstrap/template -R README.md -r -d gh-pages ."
},
"author": {
"name": "Jean-Michel FRANCOIS aka toutpt",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"angular": "^1.5.5",
"leaflet": "^0.7.7"
},
"devDependencies": {
"angular-mocks": "^1.5.5",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"coveralls": "^2.11.9",
"cz-conventional-changelog": "^1.1.6",
"dgeni": "^0.4.2",
"dgeni-alive": "^0.4.0",
"grunt": "^1.0.1",
"gulp": "^3.9.1",
"ink-docstrap": "^1.2.0",
"jasmine-core": "^2.4.1",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "^2.0.0",
"ng-describe": "^1.8.0",
"phantomjs-prebuilt": "^2.1.3",
"semantic-release": "^8.0.0",
"sia": "0.0.9",
"webpack": "^1.13.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}