-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "jquery-free",
"version": "0.2.1",
"description": "Some utility functions for native DOM NODE objects, like jQuery without overhead of functions. Better performance ",
"main": "index.js",
"scripts": {
"test": "npm run build && mocha --compilers js:babel-register",
"build": "node tasks/build.js",
"watch": "npm-watch",
"serve": "npm run test && node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LucaMele/no-jquery.git"
},
"keywords": [
"jquery-free",
"native",
"querySelector"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/LucaMele/no-jquery/issues"
},
"homepage": "https://github.com/LucaMele/no-jquery#readme",
"watch": {
"build": "{src,test}/*.js"
},
"devDependencies": {
"babel-preset-es2015": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"express": "^4.14.0",
"jsdom": "^9.5.0",
"mkdirp": "^0.5.1",
"mocha": "^3.1.0",
"mocha-jshint": "^2.3.1",
"node-mkdirp": "0.0.1",
"npm-watch": "^0.1.6",
"uglifyify": "^3.0.3"
}
}