-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.61 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.61 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@stencila/jupita",
"version": "0.3.0",
"description": "Jupyter interpreter for executable documents",
"main": "dist/index.js",
"bin": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint 'src/*.ts' --fix",
"format": "npx prettier --write '**/*.{md,ts}'",
"test": "jest --runInBand --testTimeout=60000",
"test:watch": "jest --watch",
"test:cover": "jest --runInBand --forceExit --collectCoverage",
"serve": "ts-node src serve",
"register": "npm run build && node dist register",
"build": "tsc --project tsconfig.prod.json",
"docs": "typedoc src/*.ts",
"prepack": "npm run build"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stencila/jupita.git"
},
"keywords": [
"Jupyter",
"Stencila",
"interpreter",
"executor"
],
"author": "Stencila and contributors <hello@stenci.la>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/stencila/jupita/issues"
},
"homepage": "https://github.com/stencila/jupita#readme",
"devDependencies": {
"@stencila/dev-config": "2.0.27",
"@types/jest": "27.5.2",
"jest": "27.5.1",
"ts-jest": "27.1.5",
"ts-node": "10.9.1",
"typedoc": "0.23.20",
"typescript": "4.8.4"
},
"dependencies": {
"@stencila/executa": "^1.15.4",
"jmp": "^2.0.0",
"kernelspecs": "^2.0.0",
"redux": "^4.1.1",
"spawnteract": "^5.0.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/src/*.test.ts"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-case": [
2,
"always",
"sentence-case"
],
"subject-case": [
2,
"always",
"sentence-case"
]
}
},
"eslintConfig": {
"extends": "@stencila/eslint-config",
"env": {
"jest": true
},
"rules": {
"@typescript-eslint/no-unsafe-assignment": "warn",
"@typescript-eslint/no-unsafe-call": "warn",
"@typescript-eslint/no-unsafe-member-access": "warn",
"@typescript-eslint/no-unsafe-return": "warn",
"@typescript-eslint/restrict-template-expressions": "warn"
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": "@stencila/dev-config/prettier-config.json",
"renovate": {
"extends": [
"@stencila"
]
},
"release": {
"extends": "@stencila/semantic-release-config"
}
}