-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 881 Bytes
/
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
{
"name": "chem-eb",
"version": "0.1.18",
"description": "Simple Chemical Equation Balancing",
"main": "chem.js",
"scripts": {
"test": "mocha chem_test.js",
"cov": "nyc --reporter html --reporter text npm test",
"cz": "conventional-changelog -p atom -i CHANGELOG.md -s -r 0 && git add . && git status && git cz",
"push": "npm version patch && npm publish . && git push"
},
"keywords": [
"Chemical",
"Equation",
"Balancing"
],
"author": "9601698@qq.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kongnet/chem.git"
},
"devDependencies": {
"conventional-changelog": "^3.1.10",
"cz-jt": "^0.1.11",
"mocha": "^10.2.0",
"nyc": "^15.0.0"
},
"dependencies": {
"meeko": "^1.8.330"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-jt"
}
}
}