-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.49 KB
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
52
{
"name": "protractor-starter",
"version": "0.0.1",
"description": "Protractor starting kit for writing end-to-end tests for angular.js applications. Using TypeScript for strong typing and rich code completion suppor mixed with useful plugins built-in to the starterkit to help you get started writing protractor tests in no time.",
"main": "conf.js",
"scripts": {
"commit": "git-cz",
"compile": "tsc --lib es2015",
"pretest": "npm run compile",
"test": "protractor output/config.js",
"semantic-release": "semantic-release pre && semantic-release post"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kasunkv/protractor-starter.git"
},
"keywords": [
"protractor",
"angular",
"typescript",
"starter-kit",
"boilerplate"
],
"author": "99X Techology",
"license": "MIT",
"bugs": {
"url": "https://github.com/kasunkv/protractor-starter/issues"
},
"homepage": "https://github.com/kasunkv/protractor-starter#readme",
"dependencies": {
"@types/jasmine": "2.5.45",
"@types/node": "^6.0.46",
"es6-promise": "^4.0.5",
"jasmine": "^2.5.2",
"jasmine-reporters": "^2.2.0",
"protractor": "^4.0.9",
"typescript": "^2.0.3"
},
"devDependencies": {
"commitizen": "2.8.6",
"cz-conventional-changelog": "1.2.0",
"semantic-release": "4.3.5"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "npm run compile"
}
}
}