-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.27 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": "@etm12/core.shared",
"description": "ETM12 shared toolbelt",
"version": "0.1.0",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "MIT",
"files": [
"dist",
"lib"
],
"scripts": {
"build": "babel lib/ -d dist/ --ignore **/*.spec.js --source-maps",
"build:watch": "npm run build -- --watch",
"test": "jest",
"test:cov": "npm run test -- --collectCoverage && codecov",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"infestines": "^0.4.11",
"karet.util": "^0.19.1",
"kefir": "^3.8.6",
"kefir.partial.lenses": "^14.17.0",
"kefir.ramda": "^0.26.0",
"react": "^16.8.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"babel-jest": "^24.1.0",
"codecov": "^3.2.0",
"cz-conventional-changelog": "2.1.0",
"jest": "^24.1.0"
},
"keywords": [
"kefir",
"utils"
],
"repository": {
"type": "git",
"url": "git+https://github.com/etm12/core.shared.git"
},
"homepage": "https://github.com/etm12/core.shared#readme",
"bugs": {
"url": "https://github.com/etm12/core.shared/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}