-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
54
55
{
"name": "immutable-binder",
"version": "3.0.0",
"description": "Immutable data binder / cursor with TypeScript support",
"main": "src/binder.js",
"types": "src/binder.d.ts",
"dependencies": {},
"devDependencies": {
"cloc": "^2.2.0",
"coveralls": "^3.0.5",
"jest": "^21.0.1",
"typescript": "3.3.3"
},
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage",
"test-coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test-pro": "NODE_ENV=production jest",
"test-pro-coverage": "NODE_ENV=production jest --coverage",
"cloc": "cloc . --exclude-dir=node_modules",
"cloc-src": "cloc src",
"cloc-test": "cloc test",
"ts-test": "tsc --strict --noEmit test/typescript/code/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/juanluispaz/immutable-binder.git"
},
"keywords": [
"cursor",
"immutable",
"tree",
"react",
"typescript",
"baobab",
"two-way",
"binding"
],
"author": {
"name": "Juan Luis Paz Rojas",
"url": "http://github.com/juanluispaz"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/juanluispaz/immutable-binder/issues"
},
"homepage": "https://github.com/juanluispaz/immutable-binder",
"jest": {
"testRegex": "/test/.*\\.spec\\.js$",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
]
}
}