This repository has been archived by the owner on Feb 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.55 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
{
"author": {
"email": "rianby64@gmail.com",
"name": "Andres Rios"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/rianby64/apolog.git"
},
"bugs": {
"url": "https://github.com/rianby64/apolog/issues"
},
"homepage": "https://github.com/rianby64/apolog#readme",
"name": "apolog",
"version": "1.0.1",
"description": "A simple interface to apply features described in Gherkins to any test framework (BDD)",
"main": "index.js",
"scripts": {
"pretest": "bower install",
"test": "npm run build && node jasmine-reporter.js && wct",
"test2": "JASMINE_CONFIG_PATH=spec/support/jasmine.json jasmine && JASMINE_CONFIG_PATH=spec2/support/second_env.json jasmine",
"wct": "wct",
"wct-devel": "wct && chokidar 'test/**/*' 'index.js' -c 'wct'",
"babel": "babel src/apolog.js -o index.js",
"eslint": "eslint src/apolog.js",
"build": "npm run eslint && npm run babel",
"devel": "npm run build && npm run test2 && chokidar 'src/**/*.js' 'spec/**/*.js' 'spec/**/*.feature' -c 'npm run build && npm run test2'"
},
"keywords": [
"Gherkin",
"Cucumbers",
"BDD",
"TDD"
],
"license": "ISC",
"dependencies": {
"gherkin": "^3.1.2"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-eslint": "^4.1.8",
"babel-plugin-transform-es2015-modules-umd": "^6.5.0",
"bower": "^1.7.7",
"chokidar-cli": "^1.2.0",
"eslint": "^1.10.3",
"jasmine": "^2.4.1",
"jasmine-co": "^1.1.0",
"jasmine-spec-reporter": "^2.4.0",
"web-component-tester": "^4.2.0"
}
}