-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.18 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "pawsio-app",
"version": "1.1.0",
"description": "Client side code for pawsio app.",
"main": "index.js",
"scripts": {
"update-webdriver": "webdriver-manager update",
"pree2e": "babel test-e2e-src --out-dir test-e2e",
"e2e": "protractor",
"e2e-explore": "protractor --elementExplorer",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "karma start --single-run",
"start": "webpack-dev-server --inline",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pawsio/pawsio-app.git"
},
"author": "@nthugon @michellesri @caraldi @QuantumArchive",
"license": "ISC",
"bugs": {
"url": "https://github.com/pawsio/pawsio-app/issues"
},
"homepage": "https://github.com/pawsio/pawsio-app#readme",
"devDependencies": {
"angular-mocks": "^1.6.1",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"eslint": "^3.11.1",
"eslint-loader": "^1.6.1",
"extract-text-webpack-plugin": "^1.0.1",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.24.1",
"jasmine-spec-reporter": "^2.7.0",
"karma": "^1.3.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-safari-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.8.0",
"mocha": "^3.2.0",
"node-sass": "^4.0.0",
"protractor": "^4.0.13",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webdriver": "0.0.1",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"angular": "^1.6.1",
"angular-animate": "^1.6.1",
"angular-ui-router": "^1.0.0-beta.3",
"angular-ui-router-default": "0.0.6",
"angular-xeditable": "^0.6.0",
"camelcase": "^4.0.0",
"chart.js": "^2.4.0",
"ng-dialog": "^0.6.4",
"normalize.css": "^5.0.0"
},
"babel": {
"presets": [
"es2015"
]
}
}