-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 868 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
{
"name": "ofcom-telgen",
"version": "1.0.0",
"description": "An Ofcom-sanctified fake UK telephone number generator",
"main": "dist/ofcom-telgen.js",
"module": "src/main.js",
"author": "Benjamin S. Leveritt <benjamin@leveritt.co.uk>",
"license": "MIT",
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "ava",
"test:watch": "ava --watch",
"test:coverage": "nyc ava"
},
"devDependencies": {
"ava": "^2.0.0",
"codecov": "^3.0.0",
"eslint": "^4.11.0",
"nyc": "^11.3.0",
"prettier": "^1.18.2",
"rollup": "^0.54.1",
"rollup-plugin-typescript": "^1.0.1",
"tap-xunit": "^1.7.0",
"ts-node": "^8.2.0",
"tslib": "^1.9.3",
"typescript": "^3.5.1"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}