-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "@f5io/csp",
"version": "1.0.12",
"description": "async/await communicating sequential processes",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=7.4"
},
"scripts": {
"build:cjs": "tsc -p tsconfig.build.json --module commonjs --target es5 --declaration",
"build:esm": "tsc -p tsconfig.build.json --module es2015 --target es2019 --outDir ./dist/esm",
"build": "npm run build:cjs && npm run build:esm",
"dev": "tsc -w -p tsconfig.build.json",
"test": "nyc --check-coverage --lines 100 --functions 100 --branches 100 tape -r ts-node/register ./test/index.spec.ts",
"report": "nyc report --reporter=html",
"lint": "eslint src/**/*.ts --fix"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"test"
]
},
"author": "Joe Harlow",
"license": "MIT",
"devDependencies": {
"@types/tape": "^4.2.32",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"eslint": "^5.16.0",
"nyc": "^14.1.1",
"tape": "^4.8.0",
"ts-node": "^7.0.1",
"typescript": "3.4.5"
}
}