-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.49 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.49 KB
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
64
65
66
67
68
69
70
71
72
{
"name": "react-dev-comps.intersection-observer",
"version": "0.0.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/alisaitbilgi/react-dev-comps.intersection-observer.git"
},
"author": "ali sait bilgi",
"license": "MIT",
"bugs": {
"url": "https://github.com/alisaitbilgi/react-dev-comps.intersection-observer/issues"
},
"homepage": "https://github.com/alisaitbilgi/react-dev-comps.intersection-observer#readme",
"scripts": {
"start": "webpack-dev-server",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc -d --declaration true --emitDeclarationOnly true --rootDir src --outDir dist --noEmit false",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"test": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"lint": "tslint -c tslint.json -p tsconfig.json -t verbose 'src/**/*.{ts,tsx}'"
},
"dependencies": {
"background-tasks-api": "^1.1.4",
"intersection-observer": "^0.5.1",
"react": "^16.7.0",
"react-dom": "^16.7.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/register": "^7.0.0",
"@types/chai": "^4.1.7",
"@types/enzyme": "^3.1.15",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"@types/sinon": "^7.0.3",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"karma": "^3.1.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript": "^3.0.13",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"sinon": "^7.2.2",
"ts-loader": "^5.3.3",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-semistandard": "^7.0.0",
"tslint-react": "^3.6.0",
"typescript": "^3.2.2",
"webpack": "^4.28.2"
}
}