-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "@nteract/styled-blueprintjsx",
"version": "2.1.0",
"description": "CSS underpinnings of blueprint.js, packaged as global styled components",
"keywords": [
"ui",
"react",
"nteract"
],
"author": "Kyle Kelley <[email protected]>",
"homepage": "https://github.com/nteract/nteract/tree/master/packages/ion#readme",
"license": "BSD-3-Clause",
"main": "lib/index.js",
"nteractDesktop": "src/index.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nteract/nteract.git"
},
"scripts": {
"vendorize": "ts-node scripts/vendorize-css.ts",
"build": "npm run vendorize && tsc -b",
"test": "jest"
},
"bugs": {
"url": "https://github.com/nteract/nteract/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@blueprintjs/core": "^3.7.0",
"@blueprintjs/select": "^3.2.0",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.0",
"@types/react-test-renderer": "^16.9.2",
"@types/styled-components": "^5.0.1",
"jest": "^25.1.0",
"mkdirp": "^1.0.3",
"react": "^16.13.0",
"react-test-renderer": "^16.13.0",
"styled-components": "^5.0.1",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
}
}