-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.67 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
{
"name": "chemicaltools",
"version": "1.2.22",
"description": "Chemical Tools for Chemistry students.",
"main": "src/index.js",
"scripts": {
"test": "nyc mocha test/test",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"build": "webpack --mode=production --progress && bundlesize"
},
"bundlesize": [
{
"path": "./dist/main.js"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/njzjz/chemicaltools-js.git"
},
"keywords": [
"chemical",
"tools",
"chemistry"
],
"author": "Jinzhe Zeng",
"license": "996ICU AND MIT",
"bugs": {
"url": "https://github.com/njzjz/chemicaltools-js/issues"
},
"homepage": "https://github.com/njzjz/chemicaltools-js#readme",
"dependencies": {
"tiny-pinyin": "^1.3.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@semantic-release/git": "10.0.1",
"@webpack-cli/init": "1.1.3",
"babel-loader": "9.2.1",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"bundlesize": "0.18.2",
"codecov": "3.8.3",
"mocha": "10.8.2",
"nyc": "15.1.0",
"semantic-release": "19.0.5",
"terser-webpack-plugin": "5.3.10",
"webpack": "5.97.0",
"webpack-cli": "5.1.4"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
{
"path": "dist/main.js",
"label": "chemicaltools.min.js"
}
]
}
],
"@semantic-release/git"
]
}
}