This repository was 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
/
Copy pathpackage.json
45 lines (45 loc) · 1.5 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
{
"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 && webpack && mv dist gh-pages/",
"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"
},
"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",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"ng-describe": "^1.8.0",
"phantomjs-prebuilt": "^2.1.3",
"webpack": "^1.13.0",
"semantic-release": "^4.3.5"
},
"dependencies": {
"angular": "1.5.5",
"angular-base64": "^2.0.5",
"osm-auth": "0.2.8",
"x2js": "^2.0.1"
}
}