-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.14 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "chardetng-wasm",
"version": "1.0.2",
"description": "Makes chardetng, Firefox's character encoding detection, available to JS through Web Assembly",
"scripts": {
"init": "rimraf dist",
"test": "wasm-pack test --firefox --headless",
"build:rust": "wasm-pack build --release --out-dir dist",
"build:js": "webpack",
"modpkg": "rimraf dist/package.json dist/README.md dist/.gitignore dist/LICENSE",
"build": "npm run init && npm run test && npm run build:rust && npm run modpkg && npm run build:js",
"semantic-release": "semantic-release"
},
"files": [
"dist/**/*",
"examples/**/*"
],
"keywords": [
"chardetng",
"encoding",
"unicode",
"charset",
"detection",
"chardet"
],
"author": "William Wall <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/travis-cli": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.10",
"@semantic-release/release-notes-generator": "^9.0.1",
"husky": "^3.0.2",
"json": "^10.0.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.2",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/wallw-bits/chardetng-wasm.git"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"module": "dist/chardetng_wasm.js",
"types": "dist/chardetng_wasm.d.ts",
"sideEffects": false,
"type": "module"
}