-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"author": "Oliver Kühn <[email protected]>",
"ava": {
"require": [
"@babel/register"
]
},
"bin": {
"string-mutilator": "./cli.js"
},
"dependencies": {},
"description": "A JavaScript library for mutilate strings.",
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-object-rest-spread": "7.5.5",
"@babel/plugin-transform-modules-umd": "^7.10.4",
"@babel/preset-env": "7.5.5",
"@babel/register": "^7.11.5",
"ava": "^2.4.0",
"jsdoc-to-markdown": "^5.0.3",
"rimraf": "2.6.3",
"standard-version": "^7.1.0"
},
"files": [
"index.js",
"lib"
],
"license": "MIT",
"main": "index.js",
"name": "@0x04/string-mutilator",
"repository": "[email protected]:0x04/string-mutilator",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib",
"docs:build": "jsdoc2md --template template-readme.hbs --files src/*.js > readme.md",
"prebuild": "npm run clean",
"prepublish": "npm run build",
"prewatch": "npm run clean",
"release": "standard-version",
"test": "ava --verbose",
"watch": "babel src --out-dir lib --watch"
},
"version": "1.2.0"
}