-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.38 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": "isotip",
"version": "1.3.0",
"description": "The javascript tooltip plugin with no dependencies",
"main": "isotip.js",
"repository": "https://github.com/datuhealth/isotip",
"homepage": "https://datuhealth.github.io/isotip/",
"scripts": {
"logCheck": "! grep console isotip.js dist/*.js",
"test": "npm run dist && mocha-phantomjs -v 1024x768 ./test/index.html && npm run logCheck && standard",
"dist": "browserify isotip.js -s isotip | derequire > dist/isotip.js; browserify isotip.js -s isotip | derequire | uglifyjs - > dist/isotip.min.js"
},
"keywords": [
"isotip",
"tooltip",
"javascript",
"utility"
],
"author": "Mike Engel <[email protected]>",
"contributors": [
{
"name": "Mike Engel",
"email": "[email protected]",
"url": "http://mike-engel.com"
},
{
"name": "Jacob Magnusson",
"email": "[email protected]",
"url": "https://github.com/jmagnusson"
}
],
"license": "Apache-2.0",
"devDependencies": {
"browserify": "^13.0.0",
"chai": "^3.3.0",
"derequire": "^2.0.2",
"es5-shim": "^4.5.5",
"mocha": "^3.0.0",
"mocha-phantomjs": "^4.0.2",
"standard": "^7.0.1",
"uglify-js": "^2.6.2"
},
"standard": {
"global": [
"describe",
"it",
"expect",
"beforeEach",
"afterEach"
],
"ignore": [
"dist/*.js"
]
}
}