-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
61 lines (61 loc) · 2.24 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": "angular-xml",
"version": "2.2.5",
"description": "XML module for AngularJS.",
"main": "./index.js",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"directories": {
"test": "test"
},
"devDependencies": {
"codecov": "3.5.0",
"commitizen": "^3.1.1",
"concurrently": "^4.0.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"express": "^4.16.4",
"istanbul": "^0.4.5",
"jasmine-core": "^3.4.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^2.0.0",
"karma-script-launcher": "^1.0.0",
"nodemon": "^1.19.0",
"protractor": "^5.4.2"
},
"scripts": {
"lint": "eslint .",
"serve": "node test/server",
"dev": "concurrently --kill-others \"npm run serve\" \"nodemon -x 'npm run lint && npm run unit && protractor test/e2e.conf.js'\"",
"test-travis": "npm run lint && npm run unit -- --browsers Firefox && npm run e2e-travis",
"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 --success first \"npm run serve\" \"protractor test/e2e.conf.js\"",
"e2e-travis": "concurrently --kill-others --success first \"npm run serve\" \"protractor test/e2e.travis.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": "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"
}
}