-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1001 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
43
44
{
"name": "@dcmox/lexy",
"version": "1.0.0",
"private": false,
"description": "Lexy, the Lexer. Part of the MoxyScript Framework",
"main": "lexy.js",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"typescript": "3.7.2",
"@types/jest": "^24.0.24",
"@types/sinon": "^7.5.1",
"chai": "^4.2.0",
"jest": "^24.9.0",
"sinon": "^7.5.0",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1"
},
"scripts": {
"test": "jest tests/*",
"build": "npm run build:main",
"build:main": "tsc lexy.ts",
"testb": "node lexy.js",
"watch": "tsc -w lexy.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcmox/lexy.git"
},
"keywords": [
"lexer",
"lexy"
],
"author": "Daniel Moxon (dancmox@comcast.net)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dcmox/lexy/issues"
},
"homepage": "https://github.com/dcmox/lexy#readme",
"dependencies": {
"string-dist": "^1.0.0"
}
}