-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.26 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "ale-url-parser",
"version": "1.0.0",
"description": "Fast url parser",
"main": "lib/ale-url-parser.umd.js",
"files": [
"lib/*"
],
"scripts": {
"test": "npm run unit && npm run lint",
"unit": "ava --verbose",
"lint": "eslint --fix .",
"prepare": "microbundle -i ./src/index.js -o ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msn0/ale-url-parser.git"
},
"contributors": [
"Adrian Rydzyński",
"Michał Jezierski <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/msn0/ale-url-parser/issues"
},
"homepage": "https://github.com/msn0/ale-url-parser#readme",
"devDependencies": {
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"ava": "^2.3.0",
"babel-plugin-external-helpers": "^6.22.0",
"benchmark": "^2.1.4",
"eslint-config-helmut": "^4.1.0",
"fast-url-parser": "^1.1.3",
"microbundle": "^0.15.1",
"query-string": "^6.8.2"
},
"ava": {
"powerAssert": false,
"concurrency": 4,
"require": [
"@babel/register"
],
"files": [
"./tests/*.test.js"
],
"babel": {
"testOptions": {
"presets": [
"@babel/preset-env"
]
}
}
}
}