-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.45 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.45 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "multilinediff-website",
"version": "2.0.1",
"description": "Official website for the MultiLineDiff Swift library",
"main": "index.html",
"scripts": {
"dev": "./deploy.sh dev",
"build": "./deploy.sh production",
"serve": "python3 -m http.server 8000",
"validate": "html5validator --root . --also-check-css",
"lint:css": "stylelint 'css/**/*.css'",
"lint:js": "eslint 'js/**/*.js'",
"optimize:css": "csso css/styles.css --output css/styles.min.css",
"optimize:js": "uglifyjs js/main.js --compress --mangle --output js/main.min.js",
"test": "npm run validate && npm run lint:css && npm run lint:js"
},
"keywords": [
"diff",
"swift",
"algorithm",
"multiline",
"ai",
"ascii",
"performance",
"d1f.ai",
"todd-bruss"
],
"author": "Todd Bruss <todd@d1f.ai>",
"license": "MIT",
"homepage": "https://d1f.ai",
"repository": {
"type": "git",
"url": "https://github.com/codefreezeai/swift-multi-line-diff.git",
"directory": "website"
},
"bugs": {
"url": "https://github.com/codefreezeai/swift-multi-line-diff/issues"
},
"devDependencies": {
"csso-cli": "^4.0.2",
"eslint": "^8.57.0",
"html5validator": "^0.4.2",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"uglify-js": "^3.17.4"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
],
"engines": {
"node": ">=16.0.0"
}
}