-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·55 lines (54 loc) · 1.03 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
{
"name": "source-compiler",
"description": "[ABANDONED] Compile javascript transcompilers and css frameworks with one API",
"version": "2.1.2",
"author": {
"name": "David Kudera",
"email": "[email protected]"
},
"keywords": [
"transcompiler",
"compiler",
"minify",
"source",
"coffee-script",
"typescript",
"json",
"javascript",
"less",
"stylus",
"sass",
"scss",
"css"
],
"repository": {
"type": "git",
"url": "[email protected]:Carrooi/Node-SourceCompiler.git"
},
"license": "MIT",
"engines": {
"node": "*"
},
"main": "./lib/Compiler.js",
"dependencies": {
"q": "~1.0.0",
"coffee-script": "~1.6.3",
"typescript": "~0.9.5",
"less": "~1.6.1",
"stylus": "~0.42.1",
"node-sass": "~0.8.1",
"eco": "~1.1.0-rc-3",
"uglify-js": "~2.4.10",
"clean-css": "~2.0.7",
"cache-storage": "~2.0.0",
"fs-finder": "~1.8.0",
"html-minifier": "~0.5.4"
},
"devDependencies": {
"chai": "~1.8.1",
"mocha": "~1.17.0"
},
"scripts": {
"test": "mocha ./test/index.js --timeout 5000 --reporter spec"
}
}