-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.05 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
{
"name": "composable-normalize",
"description": "Normalize URLs w/ functional programming ",
"version": "2.0.3",
"author": "David Chase <[email protected]>",
"bugs": {
"url": "https://github.com/davidchase/composable-normalize/issues"
},
"homepage": "https://github.com/davidchase/composable-normalize#readme",
"keywords": [
"canonical",
"normalize",
"uri",
"url"
],
"license": "MIT",
"main": "dist/composable-normalize.js",
"repository": {
"type": "git",
"url": "git+https://github.com/davidchase/composable-normalize.git"
},
"scripts": {
"build": "rollup -c && uglifyjs dist/composable-normalize.js -o dist/composable-normalize.min.js",
"test": "standard index.js prelude.js && tape --require buba/register test.js | tap-spec"
},
"devDependencies": {
"buba": "2.0.3",
"rollup": "0.34.10",
"rollup-plugin-buble": "0.13.0",
"standard": "8.0.0",
"tap-spec": "4.1.1",
"tape": "4.6.0",
"uglifyjs": "2.4.10"
},
"dependencies": {
"@bcombinator/prelude": "1.0.2"
}
}