-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.84 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
{
"name": "x2js",
"version": "3.2.2",
"description": "Transforms between XML string and JavaScript object trees.",
"main": "x2js.js",
"types": "x2js.d.ts",
"dependencies": {
"xmldom": "^0.1.19"
},
"devDependencies": {
"eslint": "^3.4.0",
"eslint-config-axinom": "^1.0.3",
"karma": "^1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-qunit": "^1.2.0",
"qunit-cli": "^0.2.0",
"qunitjs": "^2.0.1"
},
"scripts": {
"travistest": "./node_modules/karma/bin/karma start --single-run --browsers Firefox && ./node_modules/.bin/qunit-cli all_tests.js && node ./node_modules/eslint/bin/eslint.js --env qunit,node --no-eslintrc --config ./node_modules/eslint-config-axinom/index.js *.js",
"test": "karma start --single-run && .\\node_modules\\.bin\\qunit-cli all_tests.js && node ./node_modules/eslint/bin/eslint.js --env qunit,node --no-eslintrc --config ./node_modules/eslint-config-axinom/index.js *.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Axinom/x2js.git"
},
"keywords": [
"xml",
"convert",
"transform",
"mapping",
"map"
],
"author": "Axinom",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Axinom/x2js/issues"
},
"homepage": "https://github.com/Axinom/x2js#readme",
"eslintConfig": {
"extends": "axinom",
"env": {
"qunit": true,
"node": true
},
"rules": {
"indent": [
2,
"tab",
{
"SwitchCase": 1
}
]
}
},
"publishConfig": {
"access": "public"
}
}