forked from primer/primer-tooltips
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.07 KB
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
{
"version": "0.4.0",
"name": "primer-tooltips",
"description": "Add tooltips built entirely in CSS to nearly any element.",
"homepage": "http://primercss.io/",
"author": "GitHub, Inc.",
"license": "MIT",
"style": "index.scss",
"files": [
"index.scss",
"lib",
"build"
],
"repository": "https://github.com/primer/tooltips.git",
"bugs": {
"url": "https://github.com/primer/tooltips/issues"
},
"scripts": {
"setup": "if [ ! -d \"node_modules\" ]; then npm install; fi",
"build": "node-sass index.scss --include-path node_modules --output-style compressed | postcss -c .postcss.json -o build/build.css",
"prepublish": "npm run setup && npm run build",
"test": "npm run build && stylelint **/*.scss -c .stylelintrc.json -s scss"
},
"dependencies": {
"primer-support": "*"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"node-sass": "^3.7.0",
"postcss-cli": "^2.5.2",
"stylelint": "^7.0.3",
"stylelint-config-primer": "^1.1.0"
},
"keywords": [
"primer",
"css",
"github",
"primercss"
]
}