forked from g0t4/solitaire-systemjs-course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 799 Bytes
/
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
{
"name": "solitaire",
"private": true,
"version": "0.0.0",
"description": "A game of solitaire",
"repository": "https://github.com/g0t4/angular-solitaire",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"bower": "^1.3.1",
"eslint": "^1.5.1",
"http-server": "^0.8.4",
"jasmine-core": "^2.3.4",
"karma": "~0.13",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "^0.3.6",
"karma-junit-reporter": "^0.3.4"
},
"scripts": {
"postinstall": "node node_modules/bower/bin/bower install",
"prestart": "npm install",
"start": "http-server -c-1 -o",
"pretest": "npm install",
"test": "karma start karma.conf.js",
"test-single-run": "karma start karma.conf.js --single-run"
}
}