-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.13 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.13 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
{
"name": "bs-node-debug",
"version": "0.2.0",
"description": "BuckleScript interface to the node 'debug' library",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"prepush": "yarn build && yarn test",
"test": "cross-env NODE_ENV=test jest",
"test.watch": "cross-env NODE_ENV=test jest --watch",
"format.re": "refmt --in-place src/**/*.re",
"lint": "eslint --ext .js,.jsx ./",
"build": "bsb -make-world",
"build.watch": "yarn build -w",
"build.clean": "bsb -clean-world"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecliptic/bucklescript-tools.git"
},
"keywords": [
"bucklescript",
"reason",
"node",
"debug"
],
"author": "Brandon Konkle <brandon@ecliptic.io> (http://ecliptic.io)",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/ecliptic/bucklescript-tools/issues"
},
"homepage": "https://github.com/ecliptic/bucklescript-tools#readme",
"dependencies": {
"debug": "^3.1.0"
},
"devDependencies": {
"bs-jest": "^0.2.0",
"bs-loader": "^2.0.0",
"bs-platform": "2.0.0",
"cross-env": "^5.1.1",
"eslint": "^4.13.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^21.2.1",
"lint-staged": "^4.3.0"
},
"jest": {
"moduleFileExtensions": [
"re",
"js",
"ml"
],
"testURL": "http://localhost",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|css)$": "identity-obj-proxy"
},
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom"
],
"transform": {
".(re|ml)": "bs-loader",
".*": "babel-jest"
}
},
"lint-staged": {
"src/**/*.re": [
"format.re",
"git add"
]
}
}