-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (50 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (50 loc) · 1.44 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
{
"name": "angular-tutorial",
"version": "1.0.0",
"description": "AngularJS tutorial implementation from https://docs.angularjs.org/tutorial",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Eugene Karanda",
"email": "eugene.karanda@gmail.com",
"url": "https://github.com/eugene-karanda"
},
"keywords": [
"angularjs",
"npm",
"bower",
"karma",
"jasmine"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eugene-karanda/angular-tutorial.git"
},
"bugs": {
"url": "https://github.com/eugene-karanda/angular-tutorial/issues"
},
"homepage": "https://github.com/eugene-karanda/angular-tutorial#readme",
"dependencies": {
"bower": "^1.7.7",
"http-server": "^0.9.0"
},
"devDependencies": {
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-jasmine": "^0.3.8",
"karma-phantomjs-launcher": "^1.0.0",
"phantomjs-prebuilt": "^2.1.7",
"protractor": "^3.2.2"
},
"scripts": {
"postinstall": "node node_modules/bower/bin/bower install",
"prestart": "npm install",
"start": "node node_modules/http-server/bin/http-server app",
"pretest": "npm install",
"test": "node node_modules/karma/bin/karma start test/karma.conf.js",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor test/protractor-conf.js"
}
}