aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json5
1 files changed, 4 insertions, 1 deletions
diff --git a/package.json b/package.json
index 2008b9f..3f03670 100644
--- a/package.json
+++ b/package.json
@@ -28,7 +28,9 @@
"babel-core": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
+ "chai": "^4.1.2",
"eslint": "^3.19.0",
+ "mocha": "^3.5.3",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-node-builtins": "^2.1.2",
@@ -38,6 +40,7 @@
"build-standalone": "babel src/index.js --out-file dist/standalone.js",
"build-browser": "rollup --config rollup.config.js",
"build": "npm run build-browser && npm run build-standalone",
- "check": "eslint ./src/*"
+ "test": "mocha src/test.js --compilers js:babel-core/register",
+ "check": "eslint ./src/index.js"
}
}