-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
60 lines (60 loc) · 1.42 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
52
53
54
55
56
57
58
59
60
{
"name": "eye.js",
"version": "v1.2.1",
"description": "A JavaScript testing framework for the real world",
"main": "dist/eye.js",
"scripts": {
"run": "npm test",
"build": "npm test",
"test": "npm run gulp && npm run prettier && npm run lint && npm run eye && exit 0",
"gulp": "gulp",
"prettier": "prettier \"*(cli|dist)/**/*.js\" --write",
"lint": "./node_modules/.bin/eslint dist/eye.js --fix",
"eye": "node ./cli/index.js ./__test__/simple.js -ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arguiot/EyeJS.git"
},
"keywords": [
"test",
"framework",
"arguiot",
"eye",
"DisplayJS",
"JavaScript",
"js",
"library",
"frontend",
"browser"
],
"author": "Arthur Guiot",
"license": "MIT",
"bugs": {
"url": "https://github.com/arguiot/EyeJS/issues"
},
"homepage": "https://github.com/arguiot/EyeJS#readme",
"devDependencies": {
"babel-eslint": "^10.0.1",
"buffer-shims": "^1.0.0",
"eslint": "^4.14.0",
"flow-bin": "^0.96.0",
"gulp": "^4.0.0",
"gulp-flowtype": "^1.0.0",
"gulp-react": "^3.1.0",
"gulp-rename": "^1.2.2",
"gulp-rigger": "^0.5.8",
"prettier": "1.16.4"
},
"dependencies": {
"colors": "^1.1.2",
"express": "^4.17.1",
"globby": "^9.1.0",
"node-notifier": "^5.4.3",
"openurl": "^1.1.1",
"ora": "^3.2.0"
},
"bin": {
"eye": "./cli/index.js"
}
}