-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
57 lines (57 loc) · 1.29 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
57
{
"name": "stss",
"description": "Use SCSS to generate your Titanium Alloy TSS",
"version": "0.4.3",
"keywords": [
"titanium",
"alloy",
"sass",
"scss",
"stss",
"tss"
],
"main": "./stss.js",
"bin": {
"stss": "./bin/stss"
},
"bugs": {
"url": "https://github.com/RonaldTreur/STSS/issues",
"email": "[email protected]"
},
"author": {
"name": "Ronald Treur",
"email": "[email protected]",
"url": "http://lostparticle.net"
},
"repository": {
"type": "git",
"url": "https://github.com/RonaldTreur/STSS.git"
},
"homepage": "https://github.com/RonaldTreur/STSS",
"license": "MIT",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.3",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-test": "^0.12.7",
"grunt-newer": "*",
"jit-grunt": "^0.9.1",
"jshint-stylish": "^2.1.0",
"load-grunt-config": "^0.19.0",
"mocha": "^2.3.4",
"should": "^7.1.1",
"time-grunt": "^1.2.2"
},
"dependencies": {
"async": "^1.5.0",
"chalk": "^1.1.1",
"css-parse": "^2.0.0",
"node-sass": "^3.4.2",
"yargs": "^3.30.0"
},
"scripts": {
"test": "grunt test",
"postinstall": "node ./scripts/install.js",
"postupdate": "node ./scripts/install.js"
}
}