-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.09 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.09 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
{
"name": "corresponding-path",
"version": "1.0.7",
"description": "",
"main": "lib/path.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "ava",
"test:watch": "ava -w",
"build": "babel --plugins @babel/plugin-transform-modules-commonjs src -d lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/proprogrammer2015/corresponding-path.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/proprogrammer2015/corresponding-path/issues"
},
"homepage": "https://github.com/proprogrammer2015/corresponding-path#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/cli": "^7.2.3",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"ava": "^1.2.0"
},
"ava": {
"concurrency": 5,
"failFast": true,
"tap": true,
"cache": false,
"powerAssert": false,
"require": [
"./ava.setup.js"
],
"babel": {
"testOptions": {
"babelrc": false
}
}
}
}