-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.46 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
{
"name": "bresenham-line",
"version": "2.0.0",
"description": "implementation of Bresenham algorithm written in js",
"main": "lib/bresenham-line",
"scripts": {
"clean": "rimraf lib/* && mkdir lib || true",
"prebuild": "npm run clean",
"build": "babel src -d lib",
"test": "npm run lint && babel-node ./test.*.js | faucet",
"lint": "eslint src",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/nquicenob/bresenham-line.git"
},
"keywords": [
"bresenham",
"javascript",
"browser",
"node"
],
"author": {
"name": "Nicolas Quiceno",
"email": "nquicenob@gmail.com",
"url": "http://nquicenob.github.io/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nquicenob/bresenham-line/issues"
},
"homepage": "https://github.com/nquicenob/bresenham-line#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.8.0",
"babel-plugin-transform-es2015-block-scoping": "^6.10.1",
"babel-plugin-transform-es2015-computed-properties": "^6.8.0",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.11.5",
"eslint": "^3.3.1",
"eslint-config-airbnb-base": "^5.0.2",
"eslint-plugin-import": "^1.13.0",
"faucet": "0.0.1",
"rimraf": "^2.5.4",
"tape": "^4.6.0"
}
}