-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 857 Bytes
/
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
{
"name": "template-es6-utils",
"version": "1.2.4",
"description": "Template for writing utils in ES6 (export default syntax) with babel and test by mocha with sinon.",
"main": "./lib/index.js",
"types": "./index.d.ts",
"scripts": {
"compile": "babel src -d lib",
"prepublish": "npm test && npm run compile",
"test": "mocha"
},
"keywords": [
"template",
"es6-boilerplate",
"babel",
"mochajs",
"sinojs",
"testing",
"utils"
],
"author": "legend80s",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"git-commit-msg-linter": "^2.3.8",
"mocha": "^6.2.2",
"sinon": "^7.5.0",
"should-sinon": "^0.0.6"
},
"directories": {
"lib": "src",
"test": "test"
}
}