-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.21 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
{
"name": "parameterize-string",
"version": "1.0.1",
"description": "Replace any special characters in a string with an ASCII approximation.",
"main": "lib/index.js",
"directories": {
"test": "tests"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2017": "^6.22.0",
"eslint": "^3.14.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3"
},
"scripts": {
"prepublish": "rm -rf build/ && babel src --out-dir lib --presets=es2015",
"test": "tape tests/*.js | tap-spec && eslint index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frederfred/parameterize-string.git"
},
"keywords": [
"parameterize",
"slug",
"url-encode"
],
"author": {
"name": "Fred Bergman",
"email": "fred@fbergman.se",
"url": "http://fbergman.se"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/frederfred/parameterize-string/issues"
},
"homepage": "https://github.com/frederfred/parameterize-string#readme"
}