-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.34 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
{
"name": "angularjs-course",
"version": "1.0.0",
"description": "The AngularJS series of lections: presentation slides and examples",
"directories": {
"doc": "docs"
},
"scripts": {
"unit": "karma start",
"b1": "./node_modules/.bin/browserify apps/1ngbasic/flow.js > apps/1ngbasic/bundle.js",
"w1": "./node_modules/.bin/watchify apps/1ngbasic/flow.js -o apps/1ngbasic/bundle.js",
"b1min": "./node_modules/.bin/browserify -g uglifyify apps/1ngbasic/flow.js -o apps/1ngbasic/bundle.js",
"server": "http-server",
"e2e": "./node_modules/protractor/bin/protractor protractor.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://davidluckystar:[email protected]/davidluckystar/angularjs-course.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/davidluckystar/angularjs-course/issues"
},
"homepage": "https://github.com/davidluckystar/angularjs-course#readme",
"devDependencies": {
"angular-mocks": "^1.6.0",
"babel-preset-es2015": "^6.18.0",
"browserify": ">=13.x",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.0",
"protractor": "^4.0.13",
"uglifyify": "^3.0.4",
"watchify": "^3.8.0",
"webdriver-manager": "^10.2.10"
},
"dependencies": {
"angular": "^1.5.9"
}
}