-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "yarcl",
"version": "0.3.0",
"description": "Yet another React charting library.",
"main": "lib/yarcl.cjs.min.js",
"module": "lib/yarcl.esm.min.js",
"browser": "lib/yarcl.umd.min.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "concurrently --kill-others \"npm run watch-ts\" \"npm run watch-rollup\"",
"watch-rollup": "rollup -c --watch",
"watch-ts": "tsc --watch",
"build-rollup": "rollup -c",
"build-ts": "tsc",
"build": "tsc && rollup -c",
"lint": "tslint --project tsconfig.json src/**/*.{ts,tsx}",
"pretest": "npm run build && tsc -p test/tsconfig.json",
"test": "npm run lint && mocha",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samoxive/yarcl.git"
},
"keywords": [
"react",
"chart",
"plot",
"library"
],
"author": "Şamil NART",
"contributors": [
"Emre Can HACIOSMANOĞLU",
"Ozan KARAALİ"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/samoxive/yarcl/issues"
},
"homepage": "https://github.com/samoxive/yarcl#readme",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/enzyme": "^3.1.9",
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/react": "^16.0.40",
"@types/react-dom": "^16.0.4",
"@types/react-tooltip": "^3.3.4",
"chai": "^4.1.2",
"concurrently": "^3.5.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"mocha": "^5.0.5",
"mocha-typescript": "^1.1.12",
"npm-run-all": "^4.1.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rollup": "^0.57.1",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-gzip": "^1.3.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-sass": "^0.6.0",
"rollup-plugin-uglify": "^3.0.0",
"source-map-support": "^0.5.4",
"tslint": "^5.9.1",
"tslint-react": "^3.5.1",
"typescript": "^2.7.2"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"files": [
"lib"
],
"dependencies": {
"react-tooltip": "^3.5.0"
}
}