-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.65 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.65 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@desertnet/scanner",
"version": "2.1.1",
"description": "A regex-based string scanner/tokenizer",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && babel -s inline -D src -d dist",
"clean": "rimraf dist coverage .nyc_output",
"lint": "eslint src test",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"preversion": "npm test && npm run lint",
"test": "cross-env NODE_ENV=test mocha --require @babel/register --throw-deprecation",
"test:coverage": "cross-env NODE_ENV=test nyc mocha",
"test:watch": "chokidar src test mock fixtures --initial -c 'npm t'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/desertnet/scanner.git"
},
"keywords": [
"scanner",
"tokenizer"
],
"author": "Eric McCarthy <eric@limulus.net> (http://www.limulus.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/desertnet/scanner/issues"
},
"homepage": "https://github.com/desertnet/scanner#readme",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.54",
"@babel/core": "^7.0.0-beta.54",
"@babel/preset-env": "^7.0.0-beta.54",
"@babel/register": "^7.0.0-beta.54",
"babel-eslint": "^8.2.6",
"babel-plugin-istanbul": "^4.1.6",
"chai": "^4.1.2",
"chokidar-cli": "^1.2.0",
"cross-env": "^5.2.0",
"eslint": "^5.2.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"rimraf": "^2.6.2",
"sinon": "^6.1.4",
"sinon-chai": "^3.2.0"
},
"dependencies": {
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1",
"lodash.maxby": "^4.6.0",
"node-interval-tree": "^1.3.3"
}
}