forked from RonaldTreur/STSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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.2.1",
"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.4",
"grunt-contrib-watch": "~0.6.1",
"load-grunt-config": "^0.8.0",
"time-grunt": "^0.3.1",
"grunt-newer": "^0.7.0",
"jit-grunt": "^0.5.0",
"grunt-contrib-jshint": "^0.10.0",
"jshint-stylish": "^0.2.0",
"mocha": "^1.19.0",
"should": "^3.3.1",
"grunt-mocha-test": "^0.10.2"
},
"dependencies": {
"node-sass": "^0.8.6",
"css-parse": "^1.7.0",
"yargs": "^1.2.2",
"chalk": "^0.4.0",
"async": "^0.9.0"
},
"scripts": {
"test": "grunt test",
"postinstall": "node ./scripts/install.js",
"postupdate": "node ./scripts/install.js"
}
}