-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
62 lines (62 loc) · 1.49 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
{
"name": "@nteract/examples",
"version": "3.1.2",
"description": "Example Jupyter notebooks for nteract",
"main": "index.js",
"scripts": {
"build": "npm run generate:manifest && npm run generate:types",
"generate:manifest": "node generate-manifest.js",
"generate:types": "node generate-types.js",
"prepublishOnly": "npm run build",
"test": "npm run test:conformance && npm run build && npm run test:unit",
"test:conformance": "node scripts/conformance.js",
"test:unit": "jest"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nteract/examples.git"
},
"files": [
"index.d.ts",
"manifest.json",
"python",
"node.js",
"r",
"index.js"
],
"keywords": [
"example",
"notebooks"
],
"author": "nteract",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nteract/examples/issues"
},
"homepage": "https://github.com/nteract/examples#readme",
"devDependencies": {
"@semantic-release/npm": "^7.1.3",
"conventional-changelog-conventionalcommits": "^4.6.0",
"glob": "^7.1.3",
"jest": "^23.5.0",
"json-ts": "^1.6.4",
"jsonschema": "^1.2.4",
"nbschema": "^0.1.0",
"prettier": "^1.15.3",
"semantic-release": "^17.4.4"
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm"
]
}
}