This repository was archived by the owner on Feb 25, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.02 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "protractor-page-objects",
"version": "1.2.0",
"description": "A page object factory for angular protractor",
"main": "lib/index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"dependencies": {
"chai": "~3.5.0",
"chai-as-promised": "~6.0.0",
"dirty-chai": "~1.2.2",
"extend": "~3.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"gulp": "^3.9.1",
"gulp-angular-protractor": "^0.2.0",
"gulp-coveralls": "^0.1.4",
"gulp-gh-pages": "^0.5.4",
"gulp-istanbul": "^1.1.1",
"gulp-live-server": "^0.0.30",
"gulp-mocha": "^3.0.1",
"jsdoc": "^3.4.2",
"nsp": "^2.6.3",
"protractor": "^4.0.10",
"run-sequence": "^1.2.2",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0"
},
"peerDependencies": {
"protractor": "^4.0.10"
},
"scripts": {
"lint": "eslint src/ gulp/ test/",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run lint",
"test": "gulp test",
"posttest": "nsp check",
"compile": "babel src --out-dir lib --presets=es2015",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/digitil/protractor-page-objects.git"
},
"keywords": [
"angular",
"protractor",
"e2e",
"page",
"object",
"api",
"test",
"dsl"
],
"author": {
"name": "Calvin McEachron",
"email": "calvin@digitil.me",
"url": "http://calvinmceachron.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/digitil/protractor-page-objects/issues"
},
"standard": {
"globals": [
"by",
"beforeEach",
"expect",
"element",
"it",
"browser",
"describe",
"protractor"
],
"ignore": [
"testapp/",
"docs/"
]
}
}