-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "@binance-academy/slugify",
"version": "1.0.1",
"description": "Create a slug from a string",
"main": "build/index.js",
"scripts": {
"build": "rm -rf ./build && webpack",
"dev": "webpack --watch",
"test": "NODE_ENV=test jest '/tests/(.*).test.js' --colors",
"lint": "eslint src/** tests/**",
"pack": "npm pack",
"prepublishOnly": "yarn build"
},
"author": "Binance Academy <[email protected]> (https://academy.binance.com/)",
"contributors": [
"Brykou",
"robiiinos"
],
"bugs": {
"url": "https://github.com/Binance-Academy/slugify/issues"
},
"homepage": "https://github.com/Binance-Academy/slugify#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Binance-Academy/slugify.git"
},
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"files": [
"build/*"
]
}