-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.29 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
{
"name": "bs-blueprintjs",
"version": "0.3.1",
"description": "BuckleScript bindings for Blueprintjs",
"repository": "shanewilson/bs-blueprintjs",
"author": {
"name": "Shane Wilson"
},
"license": "MIT",
"files": [
"src/*.re",
"bsconfig.json"
],
"scripts": {
"build": "bsb -make-world",
"watch": "bsb -make-world -w",
"clean": "bsb -clean-world",
"test": "jest",
"knit:stitch": "knit stitch --parallel --scope unpublished",
"knit:version": "knit exec --scope modified -- npm version --no-git-tag-version $npm_package_version",
"knit:publish": "knit exec --scope unpublished -- npm publish --access public",
"preversion": "knit validate && npm run test",
"version": "npm run knit:version && npm run knit:stitch && git add .",
"postversion": "npm run knit:publish"
},
"dependencies": {
"@blueprintjs/core": "^1.27.0",
"@blueprintjs/datetime": "^1.22.0",
"@blueprintjs/labs": "^0.8.0",
"@blueprintjs/table": "^1.24.1",
"bs-platform": "^1.9.1",
"reason-react": "^0.2.4"
},
"devDependencies": {
"@knit/knit": "^0.7.2",
"bs-jest": "reasonml-community/bs-jest",
"dotenv": "^4.0.0",
"jest": "^20.0.4",
"react": "^15.5.4",
"react-addons-css-transition-group": "^15.6.0",
"react-dom": "^15.5.4"
}
}