-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 948 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 948 Bytes
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": "dummy-node-fs",
"version": "1.0.2",
"main": "lib/dummy-node-fs.js",
"repository": "git@github.com:proprogrammer2015/dummy-node-fs.git",
"author": "Jacek Mankowski <it.developer.1992@gmail.com>",
"license": "MIT",
"scripts": {
"test": "ava",
"test:watch": "ava -w",
"build": "babel --plugins @babel/plugin-transform-modules-commonjs src -d lib"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"ava": "^1.0.1",
"sinon": "^7.2.2"
},
"dependencies": {
"corresponding-path": "^1.0.0"
},
"ava": {
"concurrency": 5,
"failFast": true,
"tap": true,
"cache": false,
"powerAssert": false,
"require": [
"./ava.setup.js"
],
"babel": {
"testOptions": {
"babelrc": false
}
}
}
}