-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "libcss",
"version": "1.0.0",
"description": "Screen and print styles for app/site content",
"main": "buildcss.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"buildcss": "node buildcss.js",
"makeCSSsymlink": "echo 'current directory is: '$(npm prefix); echo '\nEnter path for libcss symlink (e.g. ../testsite/css) or just press enter to continue without making a css symlink:'; read dir; echo $dir; if [ -z $dir ]; then echo 'no symlink made'; else ln -s $(npm prefix) $dir; fi",
"postinstall": "npm run buildcss && npm run makeCSSsymlink"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ackmanlab/libcss.git"
},
"keywords": [
"css",
"less",
"markdown",
"pdf",
"phantom",
"notebook",
"article"
],
"author": "James Ackman",
"license": "MIT",
"bugs": {
"url": "https://github.com/ackmanlab/libcss/issues"
},
"homepage": "https://github.com/ackmanlab/libcss#readme",
"dependencies": {
"clean-css": "^4.2.1",
"less": "^3.10.3",
"less-plugin-clean-css": "^1.5.1",
"micromatch": "^4.0.2"
},
"devDependencies": {}
}