forked from praxis-isncsci/algorithm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 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
{
"name": "isncsci",
"version": "2.0.2",
"description": "Algorithm designed to produce a spinal cord injury classification consistent with the International Standards for Neurological Classification of Spinal Cord Injury developed and maintained by the American Spinal Injury Association (ASIA)",
"main": "./cjs/ISNCSCI.js",
"module": "./esm/ISNCSCI.js",
"scripts": {
"build": "rollup -c",
"test": "jest && eslint **/*.ts && cspell **",
"test:watch": "jest --watch"
},
"author": "Praxis Spinal Cord Institute",
"license": "Apache-2.0",
"homepage": "https://www.isncscialgorithm.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/praxis-isncsci/algorithm.git"
},
"keywords": [
"ISNCSCI",
"International Standards for Neurological Classification of Spinal Cord Injury",
"ASIA",
"American Spinal Injury Association",
"spinal cord injury",
"algorithm"
],
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"cspell": "^5.3.9",
"eslint": "^7.23.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"rollup": "^2.44.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.4",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
},
"files": [
"cjs",
"esm",
"iife"
],
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}