-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.06 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
{
"name": "moodlexml-to-json",
"version": "1.1.3",
"description": "Javascript library for translating MoodleXML into JSON",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"test": "npm run lint && npm run cover",
"test:prod": "cross-env BABEL_ENV=production npm run test",
"test:only": "mocha --require babel-core/register --require babel-polyfill --recursive",
"test:watch": "npm test -- --watch",
"test:examples": "node examples/",
"cover": "cross-env istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec --require babel-core/register --require babel-polyfill --recursive",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"lint": "eslint src test",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sonsoleslp/moodlexml-to-json.git"
},
"keywords": [
"moodlexml",
"moodle",
"json",
"parse",
"translate",
"convert",
"exercises",
"lms"
],
"author": "Sonsoles López Pernas <poynting.slp@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sonsoleslp/moodlexml-to-json/issues"
},
"homepage": "https://github.com/sonsoleslp/moodlexml-to-json#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.3.0",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"cross-env": "^5.1.3",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"xml2js": "^0.4.19"
}
}