-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.72 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
{
"name": "data-forge-plot",
"version": "1.0.2",
"description": "Plotting API for use with Data-Forge.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"setup": "npm install --save=false data-forge",
"c": "npm run clean",
"clean": "rm -rf build/*",
"b": "npm run build",
"build": "tsc",
"cb": "npm run clean-build",
"clean-build": "npm run clean && npm run build",
"build:watch": "tsc --watch",
"clean-build:watch": "rm -rf build/* && tsc --watch",
"prepublishOnly": "npm run setup && npm test && npm run clean-build",
"l": "npm run lint",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"pretest": "npm run lint",
"t": "npm run test",
"test": "jest",
"tw": "npm run test:watch",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/data-forge/data-forge-plot.git"
},
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/data-forge/data-forge-plot/issues"
},
"homepage": "https://github.com/data-forge/data-forge-plot#readme",
"dependencies": {
"@plotex/chart-def": "^1.0.15",
"opn": "^5.5.0",
"plot": "^1.0.17",
"resolve-cwd": "^3.0.0",
"typy": "^3.0.1"
},
"peerDependencies": {
"data-forge": "^1.8.17"
},
"devDependencies": {
"@types/jest": "^24.0.6",
"@types/node": "10.11.4",
"jest": "^24.1.0",
"ts-jest": "^23.10.5",
"ts-node": "7.0.1",
"tslint": "^5.12.1",
"typescript": "3.1.1"
}
}