-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.43 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
61
62
63
64
65
{
"name": "yatra",
"title": "Yatra",
"description": "Yatra – user friendly unit-test runner",
"version": "1.4.0",
"author": "Roman Dvornov <[email protected]>",
"license": "MIT",
"main": "runner.js",
"homepage": "https://github.com/basisjs/yatra",
"repository": "basisjs/yatra",
"keywords": [
"test",
"runner",
"javascript",
"testing",
"user-friendly"
],
"bugs": {
"url": "https://github.com/basisjs/yatra/issues"
},
"dependencies": {},
"devDependencies": {
"basisjs": "~1.7.0",
"esprima": "~2.7.2",
"diff": "~2.2.3",
"basisjs-tools-build": "basisjs/basisjs-tools-build",
"eslint": "^2.2.0",
"jscs": "~2.11.0"
},
"scripts": {
"codestyle": "node node_modules/jscs/bin/jscs src && node node_modules/eslint/bin/eslint src",
"travis": "npm run codestyle",
"build": "node node_modules/basisjs-tools-build/bin/build -p",
"prepublish": "npm run build"
},
"files": [
"docs",
"res",
"LICENSE",
"README.md",
"lib.css",
"lib.js",
"reporter.css",
"reporter.html",
"reporter.js",
"runner.js"
],
"eslintConfig": {
"env": {
"node": true,
"mocha": true,
"browser": true
},
"globals": {
"basis": true,
"resource": true,
"asset": true
},
"rules": {
"no-duplicate-case": 2,
"no-undef": 2,
"no-unused-vars": [2, {"vars": "all", "args": "after-used"}]
}
}
}