summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorRubén Beltrán del Río <ben@nsovocal.com>2017-04-12 00:18:35 -0500
committerGitHub <noreply@github.com>2017-04-12 00:18:35 -0500
commitb3b840f89948d96aa28760fc5cf41c384488f6a6 (patch)
treee6741096f29440a343323a5d7542f5caf1aceacb /package.json
parentd071276e2426c4180e44debe8b92ad16cbbc414f (diff)
Feature/code update (#1)
* Updates code for new eslint config * Remove gulp and babel files * Remove dist * Remove dist * Add contributing file * Fix references to collections / tests * Convert tests to lab * Add travis file * Add missing line * Test CI on node 6 * Removes browser test * Properly includes local serpentity in test * Rename to use orgs in npm * Add changelog * Add support files / removed dist to changelog * Add yarn.lock file * Iterate using object.keys instead of values * Correct typo in typeName matching * Add webpack to generate the dist files * Add webpack config * Add dist files * Bump version * Link to ash * Updates CHANGELOG * Add CI badge
Diffstat (limited to 'package.json')
-rw-r--r--package.json35
1 files changed, 21 insertions, 14 deletions
diff --git a/package.json b/package.json
index 4346199..a2d2521 100644
--- a/package.json
+++ b/package.json
@@ -1,30 +1,37 @@
{
- "name": "serpentity",
- "description": "A simple entity framework inspired by ash",
- "version": "1.0.0",
+ "name": "@serpentity/serpentity",
+ "description": "An Entity-Component-System Engine",
+ "version": "2.0.0-alpha2",
"contributors": [
{
"name": "Rubén Beltrán del Río",
"email": "ben@nsovocal.com",
- "url": "http://nsovocal.com"
+ "url": "https://unlimited.pizza"
}
],
"repository": {
"type": "git",
- "url": "https://github.com/rbdr/serpentity.git"
- },
- "dependencies": {
+ "url": "https://github.com/serpentity/serpentity.git"
},
+ "dependencies": {},
"devDependencies": {
- "babel-preset-es2015": "6.6.x",
- "gulp": "3.9.x",
- "gulp-babel": "6.1.x",
- "gulp-concat": "2.6.x",
- "gulp-rename": "1.2.x",
- "gulp-uglify": "1.5.x"
+ "babel-core": "^6.24.1",
+ "babel-loader": "^6.4.1",
+ "babel-preset-es2015": "^6.24.1",
+ "code": "^4.0.0",
+ "eslint": "^3.19.0",
+ "eslint-config-hapi": "^10.0.0",
+ "eslint-plugin-hapi": "^4.0.0",
+ "lab": "^13.0.1",
+ "webpack": "^2.3.3"
},
"engines": {
- "node": ">= 4.0.0"
+ "node": ">= 6.0.0"
+ },
+ "scripts": {
+ "build": "webpack --config ./config/webpack.js",
+ "lint": "eslint lib",
+ "test": "lab"
},
"main": "./lib/serpentity.js"
}