-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.62 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
59
60
61
62
63
{
"name": "collection-view",
"version": "1.0.0",
"license": "MIT",
"author": "Bastian Müller <[email protected]>",
"description": "UICollectionView for the web",
"repository": {
"type": "git",
"url": "https://github.com/turbolent/collection-view.git"
},
"main": "dist/index.js",
"types": "dist/declarations/index.d.ts",
"module": "src/index.js",
"files": [
"README.md",
"dist/",
"src/",
"LICENSE",
"examples/"
],
"scripts": {
"build": "webpack --mode development --progress --profile --colors",
"buildProduction": "webpack --mode production --progress --profile --colors",
"prepublishOnly": "npm run buildProduction",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"buildTestEnv": "webpack --mode production --context tests/env --config tests/env/webpack.config.js",
"test": "npm run buildTestEnv && jest"
},
"dependencies": {
"bezier-easing": "2.1.0",
"lodash-es": "4.17.14"
},
"devDependencies": {
"@types/bezier-easing": "2.0.0",
"@types/jest": "23.3.9",
"@types/lodash-es": "4.17.1",
"@types/puppeteer": "1.10.0",
"css-loader": "1.0.1",
"jest": "^25.2.7",
"puppeteer": "^2.1.1",
"style-loader": "0.23.1",
"ts-loader": "5.3.0",
"tslint": "5.11.0",
"typescript": "3.1.6",
"terser-webpack-plugin": "2.3.5",
"webpack": "4.26.0",
"webpack-cli": "3.1.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
"^.+\\.ts$": "<rootDir>/tests/preprocessor.js"
},
"testMatch": [
"<rootDir>/tests/*.spec.ts"
],
"verbose": true
}
}