-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 KB
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
{
"name": "yah",
"version": "1.0.0",
"description": "A compiler",
"main": "index.js",
"scripts": {
"js-beautify": "find . -type d \\( -path ./node_modules \\) -prune -o -name \"*.js\" -exec $(npm bin)/js-beautify -kr {} +",
"test": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --recursive test/",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"report": "istanbul report text-summary lcov"
},
"dependencies": {
"byline": "^4.2.1",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"describe": "^1.2.0",
"fs": "0.0.2",
"hashmap": "^2.0.4",
"js-beautify": "^1.6.2",
"xregexp": "^3.1.0",
"yargs": "^4.2.0"
},
"devDependencies": {
"coveralls": "^2.11.8",
"istanbul": "^0.4.2",
"jscover": "^1.0.0",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0",
"should": "^8.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tohoma/yah.git"
},
"keywords": [
"yah"
],
"author": "Peyton Cross, Chris Dellomes, Victor Frolov, Adrian Lu, JB Morris, Trixie Roque",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tohoma/yah/issues"
},
"homepage": "https://github.com/Tohoma/yahscript#readme"
}