-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 962 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": "adextopa",
"version": "0.0.1",
"description": "ADvanced EXtensible TOken PArser",
"main": "lib/index",
"type": "module",
"scripts": {
"coverage": "clear ; node ./node_modules/.bin/nyc ./node_modules/.bin/jasmine",
"test": "node ./node_modules/.bin/jasmine",
"test-debug": "node --inspect-brk ./node_modules/.bin/jasmine",
"test-watch": "watch 'clear ; node ./node_modules/.bin/jasmine' . --wait=2 --interval=1"
},
"keywords": [
"token",
"tokenizer",
"scripting",
"pattern"
],
"author": "Wyatt Greenway",
"license": "MIT",
"devDependencies": {
"@spothero/eslint-plugin-spothero": "github:spothero/eslint-plugin-spothero",
"colors": "^1.4.0",
"diff": "^5.1.0",
"eslint": "^8.52.0",
"jasmine": "^5.1.0",
"nyc": "^15.1.0"
},
"nyc": {
"reporter": [
"text",
"html"
],
"exclude": [
"spec/**",
"lib/proxy-class/proxy-class.js"
]
}
}