-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 872 Bytes
/
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
{
"name": "stupefy",
"version": "2.0.8",
"description": "A language independent tool for rapid prototyping stuff.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/thelehhman/stupefy"
},
"bugs": {
"url": "http://github.com/thelehhman/stupefy/issues"
},
"scripts": {
"test": "./node_modules/.bin/mocha tests",
"lint": "./node_modules/.bin/eslint ."
},
"directories": {
"lib": "./lib",
"bin": "./bin"
},
"author": "Samarjeet Singh",
"license": "MIT",
"keywords": [
"preprocessor",
"compile",
"extensible",
"html"
],
"bin": {
"stupefy": "./bin/cli.js"
},
"dependencies": {
"commander": "^2.11.0",
"handlebars": "^4.0.10",
"json5": "^0.5.1",
"simple-git": "^1.77.0"
},
"devDependencies": {
"eslint": "^4.7.2",
"mocha": "latest"
}
}