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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
{
"name": "cherow",
"version": "1.6.9",
"description": "Fast and lightweight, standard-compliant javascript parser written in ECMAScript",
"main": "dist/umd/cherow.js",
"module": "dist/es2015/cherow.js",
"jsnext:main": "dist/es2015/cherow.js",
"types": "dist/types/cherow.d.ts",
"typings": "dist/types/cherow.d.ts",
"author": "KFlash",
"contributors": [
"Fred Kleuver <https://github.com/fkleuver>"
],
"license": "ISC",
"homepage": "https://github.com/cherow/cherow",
"repository": {
"type": "git",
"url": "https://github.com/cherow/cherow"
},
"bugs": {
"url": "https://github.com/cherow/cherow/issues"
},
"keywords": [
"parsing",
"ecmascript",
"typescript",
"parser",
"performance",
"tolerant",
"estree",
"es2018",
"es2019",
"ECMAScript 2019",
"esnext",
"javascript",
"ast",
"jsx",
"tolerant",
"lightweight"
],
"files": [
"dist",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"README.md",
"LICENSE.md"
],
"scripts": {
"lint": "cross-env ./node_modules/.bin/nps lint",
"build": "cross-env ./node_modules/.bin/nps build.default",
"minify": "cross-env ./node_modules/.bin/nps build.minify",
"test": "cross-env ./node_modules/.bin/nps test",
"test:watch": "cross-env ./node_modules/.bin/nps test.watch",
"coverage": "cross-env ./node_modules/.bin/nps coverage",
"post_coverage": "cross-env ./node_modules/.bin/nps coverage.post"
},
"devDependencies": {
"@types/mocha": "^5.2.1",
"@types/node": "^10.3.2",
"clean-assert": "^2.0.0",
"coveralls": "^3.0.1",
"cross-env": "^5.1.6",
"lerna": "^2.11.0",
"mocha": "^5.2.0",
"move-cli": "^1.1.2",
"nps": "^5.9.0",
"nps-utils": "^1.5.0",
"nyc": "^11.8.0",
"rollup": "^0.60.1",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-typescript2": "^0.14.0",
"rollup-plugin-uglify": "^3.0.0",
"ts-node": "^6.1.0",
"tsconfig-paths": "^3.3.2",
"tslint": "^5.10.0",
"tslint-microsoft-contrib": "^5.0.3",
"typescript": "^2.9.1",
"unicode-11.0.0": "^0.7.7"
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"exclude": [
"build/test/**/*.*"
]
},
"dependencies": {}
}
|