-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "jasminewd2",
"description": "WebDriverJS adapter for Jasmine2.",
"homepage": "https://github.com/angular/jasminewd",
"keywords": [
"test",
"testing",
"webdriver",
"webdriverjs",
"selenium",
"jasmine"
],
"author": "Julie Ralph <ju.ralph@gmail.com>",
"devDependencies": {
"@types/jasmine": "^2.5.40",
"@types/node": "^6.0.56",
"@types/selenium-webdriver": "^2.53.38",
"jasmine": "2.4.1",
"jshint": "^2.9.4",
"selenium-webdriver": "3.5.0",
"tslint": "^4.2.0",
"tslint-eslint-rules": "^3.2.3",
"typescript": "^2.0.10",
"vrsource-tslint-rules": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/angular/jasminewd.git"
},
"main": "index.js",
"scripts": {
"jshint": "jshint index.js spec",
"tslint": "tslint spec/*.ts",
"lint": "npm run jshint && npm run tslint",
"tsc": "tsc; cp spec/*.js built_spec",
"pretest": "npm run lint && npm run tsc",
"test": "scripts/test.sh"
},
"license": "MIT",
"engines": {
"node": ">= 6.9.x"
},
"version": "2.2.0"
}