-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
{
"name": "ve-sequence-utils",
"version": "5.2.16",
"description": "sequence utility functions",
"main": "lib",
"//types": "./index.d.ts",
"repository": "https://github.com/TeselaGen/ve-sequence-utils",
"homepage": "https://github.com/TeselaGen/ve-sequence-utils",
"scripts": {
"build": "nwb build-react-component --copy-files --no-demo",
"prepare": "husky install; yarn build",
"test": "jest --env=node src",
"test-specific": "jest --env=node src --testNamePattern='should return the annealing temperature'",
"test-watch": "yarn test --watch",
"test-debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand ",
"lint": "eslint . ./",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"author": "",
"keywords": [
"sequence",
"dna",
"enzyme",
"digest",
"aminoacid",
"utils",
"teselagen",
"biojs"
],
"lint-staged": {
"src/**/*.js": [
"eslint --fix --max-warnings=0",
"prettier --write",
"git add"
]
},
"license": "MIT",
"dependencies": {
"bson-objectid": "^1.1.1",
"escape-string-regexp": "^1.0.5",
"jsondiffpatch": "^0.3.11",
"string-splice": "^1.3.0"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"auto-changelog": "^2.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.3.7",
"chai-subset": "^1.1.0",
"eslint": "8.35.0",
"eslint-config-teselagen": "6.0.17",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jsonfile": "^2.3.1",
"lint-staged": "^9.2.1",
"lodash": "^4.17.11",
"npm-check": "^5.0.1",
"nwb": "^0.23.0",
"prettier": "^1.15.3",
"ve-range-utils": "2.6.6"
}
}