-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 782 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 782 Bytes
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
{
"name": "jkuery",
"description": "jKuery sounds like jQuery",
"version": "0.1.0",
"author": "@kawanet",
"bugs": {
"url": "https://github.com/kawanet/jkuery/issues"
},
"devDependencies": {
"jshint": "^2.9.5",
"uglify-js": "^3.1.5"
},
"homepage": "https://github.com/kawanet/jkuery#readme",
"jshintConfig": {
"es3": true,
"expr": true,
"globals": {
"Event": true,
"document": true,
"module": true
},
"undef": true
},
"license": "MIT",
"main": "jkuery.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kawanet/jkuery.git"
},
"scripts": {
"build": "./node_modules/.bin/uglifyjs jkuery.js -m -o dist/jkuery.min.js",
"test": "./node_modules/.bin/jshint jkuery.js "
}
}