forked from basisjs/basisjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.88 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.88 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
{
"name": "basisjs",
"title": "basis.js",
"description": "JavaScript framework to build single-page applications",
"version": "1.11.1",
"author": "Roman Dvornov <rdvornov@gmail.com>",
"license": "MIT",
"main": "src/basis.js",
"homepage": "http://basisjs.com",
"repository": {
"type": "git",
"url": "https://github.com/basisjs/basisjs.git"
},
"keywords": [
"javascript",
"framework"
],
"bugs": {
"url": "https://github.com/basisjs/basisjs/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/basisjs/basisjs/blob/master/LICENSE"
}
],
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"mocha": true,
"es6": true
},
"globals": {
"basis": true,
"resource": true,
"asset": true,
"assert": true
},
"rules": {
"no-undef": 2,
"no-unused-vars": [
2,
{
"vars": "all",
"args": "after-used"
}
]
}
},
"dependencies": {},
"devDependencies": {
"basisjs-tools-build": "basisjs/basisjs-tools-build",
"basisjs-tools-instrumenter": "~2.0.0",
"jscs": "~3.0.0",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.1.1",
"karma-yatra": "~1.0.0",
"yatra": "~1.4.0"
},
"scripts": {
"codestyle": "node node_modules/jscs/bin/jscs .",
"lint": "npm run codestyle && node node_modules/basisjs-tools-build/bin/lint test/all.html --js-cut-dev",
"basisjs-tools-lint": "node node_modules/basisjs-tools-build/bin/lint test/all.html --js-cut-dev",
"travis": "npm run lint && npm run test",
"test": "node node_modules/karma/bin/karma start karma.conf.js",
"test:watch": "node node_modules/karma/bin/karma start --auto-watch --no-single-run karma.conf.js",
"build": "node node_modules/basisjs-tools-build/bin/build --pack",
"prepublish": "npm run build"
}
}