-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
package.json
55 lines (55 loc) · 1.58 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
{
"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"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^3.5.0",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"isparta": "^4.0.0",
"istanbul-instrumenter-loader": "^2.0.0",
"jquery": "^3.1.1",
"karma": "^1.5.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"mocha": "^3.2.0",
"puppeteer": "^9.1.1",
"webpack": "^1.12.9"
},
"repository": {
"type": "git",
"url": "https://github.com/nefe/You-Dont-Need-jQuery.git"
},
"keywords": [
"Vanilla JS",
"jQuery",
"convertion guide",
"es6",
"es2015",
"babel"
],
"author": "Cam Song and open source authors",
"license": "MIT",
"bugs": {
"url": "https://github.com/nefe/You-Dont-Need-jQuery/issues"
},
"homepage": "https://github.com/nefe/You-Dont-Need-jQuery"
}