-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 917 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
40
41
42
43
44
45
{
"name": "async-thing",
"version": "0.2.0",
"description": "",
"main": "lib/index.js",
"files": [
"lib/"
],
"types": "lib/index.d.ts",
"scripts": {
"lint": "tslint src/**/*.ts",
"build": "npm run lint && tsc --pretty",
"clean": "rm -rf lib/",
"build:tests": "tsc --pretty -p test/",
"clean:tests": "rm -rf test/build/",
"test": "npm run build:tests && nyc ava --verbose test/build/test"
},
"author": "Massimo Andreasi Bassi",
"license": "MIT",
"devDependencies": {
"@types/node": "10.5.2",
"ava": "0.25.0",
"babel-register": "6.26.0",
"nyc": "12.0.2",
"tslint": "5.10.0",
"typescript": "2.9.2"
},
"nyc": {
"include": [
"test/**"
],
"exclude": [
"test/build/test/**"
],
"reporter": [
"json",
"text",
"lcovonly"
],
"require": [
"babel-register"
],
"all": true
}
}