-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.7 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.7 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
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "metakit",
"version": "0.2.3",
"description": "A toolkit to handle storage, playback and distribution of structured alphanumerical data.",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf ./dist && rm -rf ./lib && rm -rf ./install",
"eslint": "cross-env NODE_ENV=production eslint src/",
"build": "cross-env NODE_ENV=production babel --copy-files -d dist src",
"release": "npm run clean && npm run build",
"watch": "cross-env NODE_ENV=dev babel --copy-files --watch -d dist src",
"test": "cross-env NODE_ENV=production mocha --require babel-core/register --timeout=10000 \"test/**/*.spec.js\"",
"docs": "npm run docs:prepare && npm run docs:init && npm run docs:api && gitbook build",
"docs:clean": "rimraf _book",
"docs:init": "mkdirp .readme && echo \"# API Documentation\" > .readme/api.md",
"docs:prepare": "rimraf _book && gitbook install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PieceMeta/node-metakit.git"
},
"author": "A. Koch / Motion Bank",
"license": "MIT",
"bugs": {
"url": "https://github.com/PieceMeta/node-metakit/issues"
},
"engines": {
"node": ">= 9.0.0",
"npm": ">= 5.3.0"
},
"homepage": "https://github.com/PieceMeta/node-metakit#readme",
"dependencies": {
"async-lock": "^1.1.0",
"big.js": "^5.0.3",
"bignumber.js": "^7.1.0",
"bluebird": "^3.5.1",
"bvh": "git+https://github.com/hitsujiwool/bvh.git",
"clui": "^0.3.6",
"colors": "^1.1.2",
"cross-env": "^5.1.3",
"d3-node": "^1.1.3",
"debug": "^3.1.0",
"fast-csv": "^2.4.1",
"fs-extra": "^6.0.1",
"microtime": "^2.1.6",
"mkdirp-promise": "^5.0.1",
"moment": "^2.20.1",
"mz": "^2.7.0",
"nanotimer": "^0.3.15",
"node-lmdb": "^0.6.0",
"osc": "^2.2.0",
"protobufjs": "^6.8.3",
"protocol-buffers": "^4.0.0",
"slug": "^0.9.1",
"tiny-emitter": "^2.0.2",
"uuid": "^3.1.0",
"uws": "^10.148.0",
"vectorious": "^4.8.1",
"write-file-atomic": "^2.3.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-export-default": "^7.0.0-beta.3",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"chance": "^1.0.12",
"eslint": "^4.14.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^5.0.0",
"node-wget-promise": "^0.1.3",
"sinon": "^4.5.0",
"uuid-validate": "0.0.2",
"gitbook-cli": "^2.3.2",
"rimraf": "^2.6.2"
}
}