-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.86 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": "readers-test",
"version": "0.1.0",
"description": "Readers test",
"main": "index.js",
"scripts": {
"test": "mocha --require ts-node/register --timeout 200000 test/**/*.spec.ts",
"test-concepts": "mocha --require ts-node/register --timeout 200000 test/concepts.spec.ts",
"test-entities": "mocha --require ts-node/register --timeout 200000 test/entities.spec.ts",
"test-datapoints": "mocha --require ts-node/register --timeout 200000 test/datapoints.spec.ts",
"test-schema": "mocha --require ts-node/register --timeout 200000 test/schema.spec.ts",
"test-assets": "mocha --require ts-node/register --timeout 200000 test/assets.spec.ts",
"test-exceptions": "mocha --require ts-node/register --timeout 200000 test/exceptions.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vizabi/readers-test.git"
},
"author": "Vyacheslav Chub<[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/vizabi/readers-test/issues"
},
"homepage": "https://github.com/vizabi/readers-test#readme",
"devDependencies": {
"@types/chai": "4.1.2",
"@types/core-js": "0.9.46",
"@types/es6-shim": "0.31.35",
"@types/lodash": "4.14.102",
"@types/mocha": "2.2.48",
"@types/node": "9.4.6",
"@types/papaparse": "4.1.33",
"@types/table": "4.0.4",
"babel": "6.23.0",
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-preset-es2015": "6.24.1",
"base-64": "^0.1.0",
"chai": "4.1.2",
"lodash": "4.17.5",
"mkdirp": "^0.5.1",
"mocha": "5.0.1",
"rimraf": "^2.6.2",
"shelljs": "0.8.1",
"ts-node": "4.1.0",
"typescript": "2.7.1",
"vizabi-ws-reader": "2.2.1"
},
"dependencies": {
"@types/colors": "^1.1.3",
"bluebird": "3.5.1",
"colors": "^1.1.2",
"papaparse": "4.3.7",
"table": "4.0.2"
}
}