-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.52 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
{
"name": "mapkit-vue",
"version": "0.0.1",
"description": "A Vue library for Apple Mapkit",
"author": "Thomas Alrek <[email protected]>",
"homepage": "https://github.com/thomas-alrek/mapkit-vue",
"main": "dist/mapkit-vue.min.js",
"private": false,
"license": "MIT",
"scripts": {
"init": "curl -u 'thomas-alrek' https://api.github.com/user/repos -d '{\"name\":\"mapkit-vue\"}'",
"init:private": "curl -u 'thomas-alrek' https://api.github.com/user/repos -d '{\"name\":\"mapkit-vue\", \"private\":true}'",
"lint": "eslint --ext .js,.vue src",
"test": "npm run test:client",
"test:client": "jest --config tests/client.jest.json --forceExit",
"test:client:coverage": "jest --config tests/client.jest.json --coverage --forceExit",
"dev": "vue-play start --webpack-config config/webpack.play.conf.js",
"build": "webpack --config config/webpack.base.conf.js && webpack --config config/webpack.min.conf.js",
"docs": "npm run docs:dev",
"docs:build": "gitbook install docs/ && gitbook build docs/",
"docs:dev": "npm run docs:build && gitbook serve docs/",
"docs:publish": "npm run docs:build && cd docs/_book && git init && git commit --allow-empty -m 'Update docs' && git checkout -b gh-pages && git add . && git commit -am 'Update docs' && git push [email protected]:thomas-alrek/mapkit-vue gh-pages --force",
"play": "poi --config play.config.js",
"build:play": "poi build --config play.config.js"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.18.0",
"dotenv": "^6.0.0",
"eslint": "^3.7.1",
"eslint-config-standard": "^6.1.0",
"eslint-friendly-formatter": "^2.0.5",
"eslint-loader": "^1.5.0",
"eslint-plugin-html": "^1.3.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"gitbook-cli": "^2.3.0",
"html2jade": "^0.8.6",
"husky": "^0.12.0",
"inline-environment-variables-webpack-plugin": "^1.2.1",
"isparta": "^4.0.0",
"isparta-loader": "^2.0.0",
"jest": "^18.1.0",
"mocha": "^3.2.0",
"poi": "^8.0.0",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"vue": "^2.1.0",
"vue-play": "^3.2.1",
"vue-play-cli": "^1.0.4",
"vue-template-compiler": "^2.1.8"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"dependencies": {}
}