-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.1 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
{
"name": "diffyjs",
"version": "2.0.0",
"description": "A high-performance motion detection library for the browser, powered by WebAssembly",
"main": "dist/diffy.min.js",
"scripts": {
"clean": "rm -rf dist/ demo/dist",
"start": "npm-run-all --parallel serve:dev lint:watch",
"demo": "run-s build serve:demo",
"serve:dev": "export WEBPACK_ENV=dev; node_modules/.bin/babel-node tools/dev-server.js",
"serve:demo": "node_modules/.bin/babel-node tools/demo-server.js",
"build": "run-s clean build:wasm build:dist build:demo",
"build:wasm": "wasm-pack build --target web --out-dir pkg",
"build:dist": "export WEBPACK_ENV=dist; node -r babel-register node_modules/.bin/webpack",
"build:demo": "export WEBPACK_ENV=demo; node -r babel-register node_modules/.bin/webpack",
"lint": "node_modules/.bin/esw webpack.config.* src tools demo/src ./webpack.config.js",
"lint:watch": "npm run lint -- --watch",
"test": "./node_modules/.bin/mocha --compilers js:babel-register"
},
"keywords": [
"motion-detection",
"webcam",
"webassembly",
"computer-vision",
"javascript",
"rust",
"wasm",
"browser",
"getUserMedia",
"performance"
],
"repository": {
"type": "git",
"url": "git+https://github.com/maniart/diffyjs.git"
},
"author": "Mani Nilchiani",
"license": "MIT",
"bugs": {
"url": "https://github.com/maniart/diffyjs/issues"
},
"homepage": "https://github.com/maniart/diffyjs#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"chai": "*",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-loader": "^1.6.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-watch": "^2.1.14",
"express": "^4.14.0",
"mocha": "*",
"npm-run-all": "^3.1.2",
"webpack": "^3.8.1",
"webpack-dev-middleware": "1.6.1",
"webpack-hot-middleware": "2.10.0",
"worker-loader": "^0.7.1"
}
}