forked from oxala/marko-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.16 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.16 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
{
"name": "marko-tester",
"version": "7.0.5",
"description": "Assist Marko components unit/client testing",
"repository": {
"type": "git",
"url": "[email protected]:oxala/marko-tester.git"
},
"main": "./source/index",
"bin": {
"markotester": "./source/markotester.js"
},
"scripts": {
"test": "node ./source/markotester source --no-mocha",
"eslint": "npm test -- --no-mocha",
"unit-test": "./node_modules/.bin/_mocha $(find source -name '*.spec.js')",
"integration-test": "node ./source/markotester test --no-coverage --no-lint",
"coverage": "istanbul cover ./node_modules/.bin/_mocha $(find source -name '*.spec.js')",
"clean": "rm -rf .beans .cache static source/browser.json $(find test -name '*.marko.js') $(find source -name '*.marko.js') .coverage",
"bump": "sh ./tasks/bump.sh"
},
"prepush": [
"test"
],
"keywords": [
"marko",
"test",
"marko-tester",
"coverage",
"eslint",
"lint"
],
"author": "Ryshkov, Gleb <[email protected]>",
"license": "ISC",
"dependencies": {
"app-module-path": "^2.0.0",
"async": "^2.1.2",
"bluebird": "^3.4.6",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^4.3.0",
"eslint-config-marko-tester": "^1.2.0",
"firefox-profile": "^0.4.2",
"fs-extra": "^0.30.0",
"glob": "^7.0.5",
"html-normalizer": "git+ssh://[email protected]:oxala/normalizer.git",
"istanbul": "^0.4.5",
"jsdom": "^11.1.0",
"jshint": "^2.9.3",
"lasso": "^2",
"lasso-less": "^2",
"lasso-marko": "^2",
"lodash": "^4.13.1",
"marko": "^4",
"mocha": "^3.1.0",
"mocha-junit-reporter": "^1.13.0",
"mocha-multi-reporters": "^1.1.4",
"mock-require": "^1.3.0",
"optimist": "^0.6.1",
"rewire": "^2.5.2",
"selenium-standalone": "^5.8.0",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"stack-trace": "0.0.9",
"stream-browserify": "^2.0.1",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"try-require": "^1.2.1",
"webdriverio": "^4.4.0"
},
"devDependencies": {
"pre-push": "^0.1.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}