-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.38 KB
/
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
{
"name": "parser",
"version": "0.0.0-dev",
"main": "dist/parser.js",
"repository": "[email protected]:muzea/parser.git",
"author": "muzea <[email protected]>",
"license": "GPL-3.0-or-later",
"scripts": {
"build": "parcel build src/* --target node",
"build:sample": "parcel build sample/* -d sample-dist --target node",
"build:debug": "parcel build src/* --target node --no-minify && parcel build sample/* -d sample-dist --target node --no-minify && parcel build benchmark/* -d benchmark-dist --target node --no-minify",
"test": "nyc ava --color",
"lint": "yarn tslint -p . && yarn eslint sample/*.js && yarn tslint sample/*.ts",
"benchmark": "node ./benchmark-dist/json.js",
"benchmark:build": "parcel build benchmark/* -d benchmark-dist --target node",
"report-coverage": "nyc ava --color && nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"nyc": {
"include": [
"src/parser.ts"
],
"extension": [
".ts"
],
"cache": true
},
"devDependencies": {
"ava": "1.2",
"benchmark": "^2.1.4",
"codecov": "^3.2.0",
"eslint": "^5.9.0",
"eslint-plugin-prettier": "^3.0.0",
"microtime": "^2.1.8",
"nyc": "^13.2.0",
"parcel-bundler": "^1.10.3",
"prettier": "^1.15.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"typescript": "2.9"
}
}