-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 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
56
{
"name": "ceri-tooltip",
"description": "a mobile-friendly tooltip",
"version": "0.2.0",
"homepage": "https://github.com/ceri-comps",
"author": {
"name": "Paul Pflugradt",
"email": "paul.pflugradt@gmail.com"
},
"license": "MIT",
"main": "tooltip.js",
"repository": {
"type": "git",
"url": "git://github.com/ceri-comps/ceri-tooltip"
},
"engines": {
"node": "*"
},
"files": [
"*.js",
"*.styl"
],
"dependencies": {
"ceri": "^1.0.26"
},
"devDependencies": {
"ceri-compiler": "^1.1.4",
"ceri-dev-server": "^1.0.12",
"ceri-materialize": "^2.0.0",
"coffee-loader": "^0.7.3",
"coffee-script": "^1.12.7",
"gh-pages": "^1.0.0",
"normalize.css": "^7.0.0",
"script-runner": "^0.1.7",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1"
},
"keywords": [
"tooltip",
"component",
"ceri"
],
"readmeFilename": "README.md",
"scripts": {
"build:coffee": "coffee -c -o . src/tooltip.coffee",
"build:bundle": "ceri-compiler -b tooltip.js",
"build": "run-npm build:*",
"dev": "ceri-dev-server",
"watch": "ceri-dev-server --test --watch",
"test": "ceri-dev-server --test",
"preversion": "npm test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags && npm publish",
"ghpages": "ceri-dev-server --static static/ && gh-pages -d static"
}
}