2015-08-14 13:24:30 +00:00
|
|
|
{
|
|
|
|
"name": "dat.gui",
|
2016-09-01 20:01:02 +00:00
|
|
|
"version": "0.6.0",
|
2015-08-14 13:24:30 +00:00
|
|
|
"description": "A lightweight graphical user interface for changing variables in JavaScript.",
|
|
|
|
"main": "index.js",
|
|
|
|
"directories": {
|
|
|
|
"test": "tests"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2015-08-14 16:27:54 +00:00
|
|
|
"test": "node ./node_modules/eslint/bin/eslint.js src/",
|
2016-09-01 19:50:55 +00:00
|
|
|
"dev": "webpack --progress --colors --watch --config webpack/webpack.config.js --devtool sourcemap",
|
|
|
|
"build": "npm run build-js && npm run build-css",
|
|
|
|
"build-js": "webpack --config ./webpack/webpack.config.js --devtool sourcemap && webpack --config ./webpack/webpack.config.min.js",
|
|
|
|
"build-css": "node-sass src/dat/gui/style.scss build/dat.gui.css"
|
2015-08-14 13:24:30 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-09-01 20:01:02 +00:00
|
|
|
"url": "git+https://github.com/dataarts/dat.gui.git"
|
2015-08-14 13:24:30 +00:00
|
|
|
},
|
2016-09-01 20:01:02 +00:00
|
|
|
"author": "Data Arts Team, Google",
|
2015-08-14 16:27:54 +00:00
|
|
|
"license": "Apache-2.0",
|
2015-08-14 13:24:30 +00:00
|
|
|
"bugs": {
|
2016-09-01 20:01:02 +00:00
|
|
|
"url": "https://github.com/dataarts/dat.gui/issues"
|
2015-08-14 13:24:30 +00:00
|
|
|
},
|
2016-09-01 20:01:02 +00:00
|
|
|
"homepage": "https://github.com/dataarts/dat.gui#readme",
|
2015-08-14 13:24:30 +00:00
|
|
|
"devDependencies": {
|
2015-08-14 16:27:54 +00:00
|
|
|
"babel-core": "^5.8.22",
|
|
|
|
"babel-eslint": "^4.0.5",
|
|
|
|
"babel-loader": "^5.3.2",
|
2015-08-14 13:24:30 +00:00
|
|
|
"css-loader": "^0.16.0",
|
2015-08-14 20:29:30 +00:00
|
|
|
"esdoc": "^0.2.1",
|
|
|
|
"esdoc-es7-plugin": "0.0.1",
|
2015-08-14 16:27:54 +00:00
|
|
|
"eslint": "^1.1.0",
|
|
|
|
"eslint-config-airbnb": "0.0.7",
|
2015-08-14 20:29:30 +00:00
|
|
|
"eslint-loader": "^1.0.0",
|
2015-08-14 16:27:54 +00:00
|
|
|
"eslint-plugin-react": "^3.2.2",
|
2015-08-14 13:24:30 +00:00
|
|
|
"extend": "^3.0.0",
|
|
|
|
"html-loader": "^0.3.0",
|
2015-08-14 16:27:54 +00:00
|
|
|
"node-sass": "^3.2.0",
|
|
|
|
"sass-loader": "^2.0.0",
|
2015-08-14 13:24:30 +00:00
|
|
|
"style-loader": "^0.12.3",
|
|
|
|
"webpack": "^1.11.0"
|
2015-08-15 01:28:21 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"babel": "^5.8.21"
|
2015-08-14 13:24:30 +00:00
|
|
|
}
|
|
|
|
}
|