-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 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
65
66
67
68
69
{
"name": "dazzling-graph-progressive",
"version": "0.5.0",
"description": "Graph manipulation with filtering for progressive rendering of 2D layers",
"homepage": "https://github.com/flarebyte/dazzling-graph-progressive#readme",
"author": {
"name": "Olivier Huin",
"email": "npm.olivier.huin@flarebyte.com",
"url": "https://github.com/olih"
},
"main": "dist/index.js",
"files": [
"bin/",
"dist/"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src test",
"fix": "eslint src test --fix",
"check": "npm run lint -s && dependency-check package.json --entry src",
"watch": "watch 'npm run build' src test",
"test": "babel-node test/index.js | tspec",
"prebuild": "npm run check -s && npm run clean -s",
"build": "babel --optional runtime src -d dist",
"postbuild": "npm run test -s",
"coverage": "babel-node node_modules/isparta/bin/isparta cover test/index.js",
"coveralls": "npm run coverage -s && coveralls < coverage/lcov.info",
"postcoveralls": "rimraf ./coverage",
"prepublish": "npm run build -s",
"deploy": "git pull --rebase origin master && git push origin master",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags",
"toc": "doctoc --github --title \"# Changelog\" CHANGELOG.md"
},
"keywords": [
"graph",
"filter",
"2d",
"layer"
],
"bugs": {
"url": "https://github.com/flarebyte/dazzling-graph-progressive/issues"
},
"repository": "https://github.com/flarebyte/dazzling-graph-progressive.git",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.7.2",
"babel-eslint": "^5.0.0",
"babel-preset-es2015": "^6.5.0",
"coveralls": "^2.11.8",
"dependency-check": "*",
"doctoc": "*",
"eslint": "2.2.x",
"isparta": "*",
"rimraf": "*",
"tap-spec": "*",
"tape": "*",
"watch": "*"
},
"dependencies": {
"joi": "^8.0.4",
"lodash": "^4.5.1"
}
}