-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "dialekt-js",
"version": "0.0.3",
"description": "JS port of IcecaveStudios PHP Dialekt",
"main": "lib/index.js",
"scripts": {
"build": "coffee --compile --output lib src",
"prepublish": "coffee --compile --output lib src",
"postpublish": "rm -rf lib",
"test": "mocha",
"coveralls": "mocha --reporter mocha-lcov-reporter | coveralls src",
"coverageHtml": "mocha --reporter html-cov > coverage.html && open coverage.html"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/IcecaveStudios/dialekt-js.git"
},
"keywords": [
"expression",
"parser",
"list",
"parser",
"AST"
],
"author": "Jake Mc <[email protected]>",
"license": "ISC",
"devDependencies": {
"mocha": "^1.20.1",
"coffee-script": "^1.7.1",
"chai": "^1.9.1",
"grunt": "^0.4.5",
"grunt-gh-pages": "^0.9.1",
"grunt-docco": "^0.3.3",
"grunt-codo": "^0.1.0",
"sinon": "^1.10.2",
"coffee-coverage": "^0.4.2",
"mocha-lcov-reporter": "0.0.1",
"coveralls": "^2.11.1"
}
}