-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.87 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
43
44
45
46
47
48
49
50
51
{
"name": "circlechallenge",
"version": "1.0.1",
"description": "Whenever the user clicks on the page, a circle is 'fired' from the clicked position at a random speed and angle.",
"main": "index.html",
"scripts": {
"webdriver-manager": "webdriver-manager",
"lint": "tslint --project ./tsconfig.json --config tslint.json './src/**/*.ts'",
"typings": "typings",
"webpack": "webpack --progress",
"postinstall": "typings install",
"prestart": "npm install",
"start": "npm run bundle:production",
"poststart": "opn ./dist/index.html",
"clean": "rimraf ./dist/* ./coverage/*",
"clean:dist": "rimraf ./dist/*",
"precoverage": "cross-env NODE_ENV=coverage webpack",
"coverage": "karma start karma.coverage.config.js",
"postcoverage": "opn ./coverage/report/index.html",
"test": "karma start karma.config.js --singleRun",
"test:watch": "karma start karma.config.js --auto-watch",
"test:e2e": "protractor protractor.config.js",
"bundle:development": "cross-env NODE_ENV=development webpack",
"bundle:development:watch": "npm run bundle:development -- --watch",
"bundle:production": "cross-env NODE_ENV=production webpack"
},
"author": "Philippe Morier",
"license": "ISC",
"devDependencies": {
"cross-env": "^3.0.0",
"html-webpack-plugin": "^2.22.0",
"istanbul-instrumenter-loader": "0.2.0",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.2.0",
"karma-remap-istanbul": "0.1.1",
"opn-cli": "^3.1.0",
"protractor": "^4.0.9",
"remap-istanbul": "0.5.1",
"rimraf": "^2.5.4",
"ts-loader": "^0.8.2",
"tslint": "^3.15.1",
"tslint-microsoft-contrib": "^2.0.12",
"typescript": "^2.0.3",
"typings": "^1.4.0",
"webpack": "^2.1.0-beta.25"
}
}