forked from clauderic/virtualized-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.36 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
56
57
58
{
"name": "virtualized-list",
"version": "2.2.0",
"description": "A tiny, dependency free, virtualization library",
"author": {
"name": "Clauderic Demers",
"email": "[email protected]"
},
"user": "clauderic",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"es",
"lib",
"umd"
],
"scripts": {
"start": "nwb serve-web-app demo/src/index.js",
"build": "nwb build-web-module",
"clean": "nwb clean-module",
"test": "jest --no-cache",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:ci": "jest && codecov"
},
"dependencies": {
"morphdom": "^2.3.1"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-1": "^6.22.0",
"codecov": "^1.0.1",
"eslint": "3.14.1",
"jest": "^19.0.2",
"nwb": "^0.15.6"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"transform": {
"^.+\\.js$": "./babel-jest.config.js"
},
"setupFiles": [
"./tests/jest-setup.js"
]
},
"homepage": "https://github.com/clauderic/virtualized-list",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/clauderic/virtualized-list.git"
},
"bugs": {
"url": "https://github.com/clauderic/virtualized-list/issues"
}
}