-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.96 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
{
"name": "wikipediajs",
"version": "0.0.0-development",
"description": "Wikipedia js api wrapper",
"main": "dist/wiki.js",
"unpkg": "dist/index.umd.min.js",
"scripts": {
"test": "mocha src/wiki.spec.js",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"commit": "git-cz",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --out-dir dist --ignore *.spec.js src",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --output-filename index.umd.min.js -p"
},
"repository": {
"type": "git",
"url": "https://github.com/maximodleon/wikipediajs.git"
},
"keywords": [
"api",
"js",
"wikipedia"
],
"files": [
"dist",
"README.md"
],
"author": "Máximo De León <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/maximodleon/wikipediajs/issues"
},
"homepage": "https://github.com/maximodleon/wikipediajs#readme",
"dependencies": {
"axios": "0.17.1",
"xml-js": "1.6.2"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-loader": "7.1.2",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"chai": "4.1.2",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "2.1.0",
"eslint": "4.16.0",
"eslint-config-standard": "11.0.0-beta.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-prettier": "2.5.0",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1",
"json-loader": "0.5.7",
"mocha": "4.1.0",
"npm-run-all": "4.1.2",
"prettier": "1.10.2",
"rimraf": "2.6.2",
"semantic-release": "^12.2.2",
"travis-deploy-once": "^4.3.2",
"webpack": "3.10.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}