-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.05 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.05 KB
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
{
"name": "string-library-iobablola",
"version": "1.0.2",
"description": "A String reversal library",
"main": "index.js",
"scripts": {
"test": "nyc ava",
"build": "rollup -c",
"coverage": "nyc report --reporter=lcov --reporter=text-lcov --reporter=html"
},
"ava": {
"require": [
"@babel/register",
"esm"
],
"babel": {
"testOptions": {
"presets": [
"@ava/stage-4",
"@babel/preset-env",
[
"@ava/transform-test-files",
{
"powerAssert": true
}
]
]
}
}
},
"author": "Isaac Babalola",
"license": "MIT",
"private": false,
"devDependencies": {
"@ava/babel-preset-stage-4": "^4.0.0",
"@ava/babel-preset-transform-test-files": "^6.0.0",
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.6.2",
"ava": "2.4.0",
"babel-plugin-istanbul": "^5.2.0",
"esm": "^3.2.25",
"nyc": "^14.1.1",
"rollup": "^1.21.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-watch": "^4.3.1",
"tap-xunit": "^2.4.1",
"tap-xunit-circleci": "^1.0.0"
},
"dependencies": {}
}