-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "rebem-helper",
"version": "2.1.0",
"description": "Simple BEM helper with ReasonMl",
"repository": {
"type": "git",
"url": "git+https://github.com/remithomas/rebem-helper.git"
},
"author": "remithomas",
"license": "MIT",
"homepage": "https://github.com/remithomas/rebem-helper#readme",
"keywords": [
"bem",
"css",
"helper",
"reason",
"reasonml"
],
"files": [
"src/",
"bsconfig.json"
],
"scripts": {
"postinstall": "npm run test",
"start": "bsb -make-world -w",
"build": "bsb -make-world",
"clean": "bsb -clean-world",
"pretest": "npm run build",
"test": "jest --coverage",
"test:dev": "jest --watchAll",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"bugs": {
"url": "https://github.com/remithomas/rebem-helper/issues"
},
"peerDependencies": {
"bs-platform": "^3.1.5"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.6",
"bs-platform": "^4.0.14",
"coveralls": "^3.0.2",
"jest": "^23.6.0"
}
}