-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·99 lines (99 loc) · 2.81 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "vquery",
"version": "5.0.1",
"description": "A simple, light-weight, vanilla JS wrapper for jQuery-like syntax.",
"main": "dist/index.js",
"files": [
"bin/",
"dist/"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src test",
"check": "npm run lint -s && dependency-check package.json --entry src",
"watch": "watch 'npm run build' src",
"test": "gulp browserify && node ./node_modules/mocha-phantomjs/bin/mocha-phantomjs test/tests.html",
"prebuild": "npm run clean -s",
"build": "npm run minify && babel --optional runtime src -d dist",
"minify": "rimraf v.min.js && gulp dist && gulp uglify",
"coverage": "babel-node node_modules/isparta/bin/isparta cover test/index.js",
"coveralls": "npm run coverage -s && coveralls < coverage/lcov.info",
"postcoveralls": "rimraf ./coverage",
"prepublish": "npm run build -s",
"deploy": "git pull --rebase origin master && git push origin master",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags",
"toc": "doctoc --github --title \"# Changelog\" CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaszhix/vquery.git"
},
"keywords": [
"vquery",
"jquery",
"vanilla",
"javascript",
"js",
"dom",
"browser",
"tool",
"utility",
"wrapper",
"umbrella",
"selector",
"small",
"alternative",
"zepto",
"micro"
],
"author": "Jason Hicks <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaszhix/vquery/issues"
},
"homepage": "https://github.com/jaszhix/vquery",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "*",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.9.2",
"babelify": "^7.2.0",
"browser-sync": "^2.10.1",
"browserify": "^12.0.1",
"chai": "^3.4.1",
"chai-as-promised": "^5.3.0",
"coveralls": "*",
"dependency-check": "*",
"doctoc": "*",
"eslint": "*",
"exports-loader": "^0.6.3",
"gulp": "^3.9.0",
"gulp-mocha-phantomjs": "^0.10.1",
"gulp-uglifyjs": "^0.6.2",
"imports-loader": "^0.6.5",
"isparta": "*",
"jquery": "^2.2.0",
"lodash": "^4.14.1",
"mocha": "^2.3.4",
"mocha-phantomjs": "^4.1.0",
"rimraf": "*",
"tap-spec": "*",
"tape": "*",
"vinyl-source-stream": "^1.1.0",
"watch": "*",
"webpack": "^1.13.1",
"webpack-stream": "^3.2.0"
},
"dependencies": {
"promise-polyfill": "^6.0.1",
"setasap": "^2.0.0"
}
}