-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 920 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
{
"name": "pstrscan",
"description": "A simple, fast string tokenizer for lexical scanning operations.",
"version": "0.1.6",
"keywords": [
"regular",
"expression",
"tokenizer",
"text",
"string",
"scanner"
],
"main": "./lib/pstrscan.js",
"homepage": "http://github.com/jhamlet/node-pstrscan",
"directories": {
"lib": "lib"
},
"dependencies": {
"proteus": "0.1.x"
},
"devDependencies": {
"mocha": "0.3.x",
"should": "0.5.x"
},
"scripts": {
"test": "mocha test/test-pstrscan.js"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/jhamlet/node-pstrscan/raw/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "http://github.com/jhamlet/node-pstrscan.git"
},
"preferGlobal": true
}