-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.22 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
{
"name": "tortuga-js",
"version": "1.0.1",
"description": "Tortuga is a minimal turtle graphics implementation in JavaScript and Canvas, intended to be used in modern browsers.",
"main": "lib/Tortuga.js",
"module": "src/index.js",
"directories": {
"doc": "docs"
},
"dependencies": {},
"devDependencies": {
"babel": "6.23.0",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "6.24.1",
"eslint": "2.7.0",
"eslint-config-airbnb": "6.2.0",
"eslint-loader": "1.8.0",
"webpack": "2.0.0"
},
"scripts": {
"build": "WEBPACK_ENV=build webpack",
"dev": "WEBPACK_ENV=dev webpack --progress --colors --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peregrinogris/tortuga.git"
},
"keywords": [
"canvas",
"turtle graphics"
],
"author": "Hernán Rodríguez Colmeiro <[email protected]> (http://peregrinogris.com.ar)",
"license": "MIT",
"bugs": {
"url": "https://github.com/peregrinogris/tortuga/issues"
},
"homepage": "https://github.com/peregrinogris/tortuga#readme"
}