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 8
/
package.json
55 lines (55 loc) · 1.92 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
{
"name": "angular-osm",
"description": "OpenStreetMap APIs as services for angular",
"main": "dist/osm-full.js",
"repository": {
"type": "git",
"url": "https://github.com/toutpt/angular-osm.git"
},
"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": "Jean-Michel FRANCOIS <[email protected]>",
"license": "MIT",
"devDependencies": {
"angular-mocks": "^1.5.5",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.0",
"babel-preset-es2015": "^6.6.0",
"coveralls": "^2.11.9",
"cz-conventional-changelog": "^1.1.6",
"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-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"ng-describe": "^1.8.0",
"phantomjs-prebuilt": "^2.1.3",
"semantic-release": "^6.3.2",
"webpack": "^1.13.0"
},
"dependencies": {
"angular": "1.5.8",
"angular-base64": "^2.0.5",
"osm-auth": "1.0.1",
"x2js": "^3.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}