Skip to content

Commit b2652bb

Browse files
committed
npm and component(1) bits
1 parent dddc470 commit b2652bb

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target/

component.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "stack-parser",
3+
"version": "0.1.0",
4+
"main": "./stack-parser.js",
5+
"dependencies": {}
6+
}

package.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "stack-parser",
3+
"description": "Extract meaning from JS Errors",
4+
"author": "Eric Wendelin <me@eriwen.com> (http://eriwen.com)",
5+
"version": "0.1.0",
6+
"keywords": ["stacktrace", "error"],
7+
"homepage": "http://stacktracejs.com",
8+
"repository": {
9+
"type": "git",
10+
"url": "git://github.com/stacktracejs/stack-parser.git"
11+
},
12+
"bugs": {
13+
"url": "https://github.com/stacktracejs/stack-parser/issues"
14+
},
15+
"licenses": [{
16+
"type": "Public Domain",
17+
"url": "https://github.com/stacktracejs/stack-parser/blob/master/LICENSE"
18+
}],
19+
"main": "./stack-parser.js",
20+
"engines": {
21+
"node": ">= 0.6.0"
22+
},
23+
"dependencies": {},
24+
"devDependencies": {
25+
"jshint": "0.9.x"
26+
},
27+
"scripts": {
28+
"test": "make jstd"
29+
}
30+
}

0 commit comments

Comments
 (0)