-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (29 loc) · 1.05 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
{
"name": "address-book-angular-js",
"private": true,
"version": "0.0.0",
"description": "An address book project for AngularJS",
"repository": "https://github.com/aluzardo/address-book-angular-js",
"license": "MIT",
"devDependencies": {
"bower": "^1.3.1",
"http-server": "^0.6.1",
"jasmine-core": "^2.3.4",
"karma": "~0.12",
"karma-chrome-launcher": "^0.1.12",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "^0.3.5",
"karma-junit-reporter": "^0.2.2",
"shelljs": "^0.2.6",
"country-list": "^0.0.3",
"browserify": "latest"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install && browserify app/browserify_modules/country-list.js -o app/browserify_modules/country-list-bundle.js",
"start": "http-server -a localhost -p 8000 -c-1",
"pretest": "npm install && browserify app/browserify_modules/country-list.js -o app/browserify_modules/country-list-bundle.js",
"test": "karma start karma.conf.js",
"test-single-run": "karma start karma.conf.js --single-run"
}
}