forked from johngeorgewright/angular-xml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.92 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.92 KB
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
{
"name": "angular-xml",
"version": "2.2.1",
"description": "XML module for AngularJS.",
"main": "./index.js",
"directories": {
"test": "test"
},
"devDependencies": {
"concurrently": "^3.1.0",
"eslint": "^3.8.0",
"express": "^4.14.0",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-script-launcher": "^1.0.0",
"nodemon": "^1.11.0",
"protractor": "^4.0.9"
},
"scripts": {
"lint": "eslint .",
"serve": "node test/server",
"dev": "concurrently --kill-others \"node test/server\" \"nodemon -x 'npm run lint && npm run unit && protractor test/e2e.conf.js'\"",
"test": "npm run lint && npm run unit && npm run e2e",
"unit": "karma start test/unit.conf.js --no-auto-watch --single-run",
"e2e": "concurrently --kill-others \"node test/server\" \"protractor test/e2e.conf.js\"",
"compile": "curl \"http://closure-compiler.appspot.com/compile\" -X POST --data output_info=compiled_code --data output_format=text --data compilation_level=SIMPLE_OPTIMIZATIONS --data warning_level=default --data-urlencode \"js_code=$(cat angular-xml.js)\" > angular-xml.min.js",
"update-webdriver-manager": "node_modules/protractor/node_modules/.bin/webdriver-manager update",
"hook-git": "ln -s ../../git-hooks/pre-commit.sh .git/hooks/pre-commit",
"unhook-git": "rm .git/hooks/pre-commit"
},
"repository": {
"type": "git",
"url": "git://github.com/johngeorgewright/angular-xml.git"
},
"keywords": [
"angular",
"xml"
],
"author": "John Wright <johngeorge.wright@gmail.com>",
"license": "BSD",
"readmeFilename": "README.md",
"gitHead": "818239745e3953f67761b27a17ac7c43a23ee690",
"bugs": {
"url": "https://github.com/johngeorgewright/angular-xml/issues"
},
"dependencies": {
"x2js": "git+https://github.com/abdmob/x2js.git"
}
}