-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 847 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": "aduno-talk",
"version": "1.0.0",
"description": "Source code of my talk/workshop \"Javascript Test Dummies\" for Aduno",
"main": "index.js",
"scripts": {
"test": "karma start karma.conf.js",
"test-watch": "karma start karma.conf.js --auto-watch --no-single-run",
"serve": "http-server . -p 3000 -s"
},
"repository": {
"type": "git",
"url": "http://github.com/maur8ino/milanojs-talk-july-2015.git"
},
"author": "Mauro Verrocchio <[email protected]>",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"http-server": "^0.9.0",
"jasmine-core": "^2.3.4",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.0.3",
"karma-phantomjs-launcher": "^1.0.0",
"phantomjs-prebuilt": "^2.1.7"
}
}