forked from camsong/You-Dont-Need-jQuery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.49 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
{
"name": "You-Dont-Need-jQuery",
"version": "2.0.0",
"description": "Examples of how to do query, style, dom, ajax, event etc like jQuery with plain javascript.",
"scripts": {
"test": "karma start --single-run",
"tdd": "karma start --auto-watch --no-single-run",
"test-cov": "karma start --auto-watch --single-run --reporters progress,coverage",
"lint": "eslint src test"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.1.21",
"babel-eslint": "^4.1.5",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"chai": "^3.4.1",
"eslint": "^1.9.0",
"eslint-config-airbnb": "^1.0.0",
"eslint-plugin-react": "^3.10.0",
"isparta": "^4.0.0",
"istanbul-instrumenter-loader": "^0.1.3",
"jquery": "^2.1.4",
"karma": "^0.13.15",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.1",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.4",
"webpack": "^1.12.9"
},
"repository": {
"type": "git",
"url": "https://github.com/oneuijs/You-Dont-Need-jQuery.git"
},
"keywords": [
"convertion guide",
"jQuery",
"es6",
"es2015",
"babel",
"OneUI Group"
],
"author": "OneUI Group",
"license": "MIT",
"bugs": {
"url": "https://github.com/oneuijs/You-Dont-Need-jQuery/issues"
},
"homepage": "https://github.com/oneuijs/You-Dont-Need-jQuery"
}