-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·64 lines (64 loc) · 1.88 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
57
58
59
60
61
62
63
64
{
"name": "@dwtechs/slughorn",
"version": "0.2.1",
"description": "is an open source library that transforms string value to a url slug optimized for SEO.",
"keywords": [
"slug",
"slugify",
"slugifier",
"url slug",
"SEO"
],
"homepage": "https://github.com/DWTechs/Slughorn.js",
"main": "dist/slughorn",
"types": "dist/slughorn",
"repository": {
"type": "git",
"url": "https://github.com/DWTechs/Slughorn.js"
},
"bugs": {
"url": "https://github.com/DWTechs/Slughorn.js/issues",
"email": ""
},
"license": "MIT",
"author": {
"name": "Ludovic Cluber",
"email": "http://www.lcluber.com/contact",
"url": "http://www.lcluber.com"
},
"contributors": [],
"scripts": {
"start": "",
"build": "node ./scripts/clear && tsc && npm run rollup && npm run uglify && node ./scripts/copy && npm run test",
"rollup:mjs": "rollup --config rollup.config.mjs.js",
"rollup:iife": "rollup --config rollup.config.iife.js",
"rollup:cjs": "rollup --config rollup.config.cjs.js",
"rollup": "npm run rollup:mjs && npm run rollup:iife && npm run rollup:cjs",
"uglify": "uglifyjs build/slughorn.iife.js --config-file uglify.config.json --output build/slughorn.iife.min.js",
"test": "jest --coverage"
},
"files": [
"dist/"
],
"dependencies": {
"@dwtechs/checkhard": "2.15.0"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/preset-env": "7.11.5",
"@rollup/plugin-commonjs": "15.0.0",
"@rollup/plugin-node-resolve": "9.0.0",
"babel-jest": "24.9.0",
"core-js": "3.6.4",
"jest": "24.9.0",
"rollup": "2.37.1",
"rollup-plugin-analyzer": "3.3.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-progress": "1.1.2",
"rollup-plugin-size-snapshot": "0.12.0",
"rollup-plugin-sizes": "1.0.3",
"tslint": "5.20.1",
"typescript": "4.0.2",
"uglify-js": "3.10.4"
}
}