-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
55 lines (55 loc) · 1.4 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": "protip",
"version": "1.4.21",
"description": "A new generation jQuery Tooltip plugin.",
"main": "main.js",
"scripts": {
"test": "npm run-script build-test",
"build-test": "browserify -t html2js-browserify test/test.js -o bundle.test.js && npm run-script sass",
"build-prod": "browserify -t html2js-browserify main.js -o bundle.js && npm run-script sass && node minify.js",
"build": "npm run build-prod",
"build-all": "npm run build-test && npm run build-prod",
"sass": "node-sass css/protip.scss css/protip.css",
"changelog": "github-changes -o DoclerLabs -r Protip -a"
},
"author": "Victor Vincent <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wintercounter/Protip"
},
"bugs": {
"url": "https://github.com/wintercounter/Protip/issues"
},
"keywords": [
"tooltip",
"jquery",
"plugin",
"observer",
"live",
"gravity",
"auto"
],
"devDependencies": {
"async": "1.5.2",
"browserify": "13.0.0",
"browserify-shim": "3.8.12",
"chai": "3.5.0",
"html2js-browserify": "1.1.0",
"minifier": "0.7.1",
"mocha": "2.4.5",
"node-sass": "^4.11.0",
"sinon": "1.17.3"
},
"dependencies": {
"jquery": "^3.3.1"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jquery": "global:jQuery"
}
}