Skip to content

Commit 0e781ba

Browse files
author
pasit.r
committed
initial package files
0 parents  commit 0e781ba

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

.babelrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["latest"]
3+
}

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist/
2+
node_modules/
3+

package.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "tutorial",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "mocha test/ --compilers js:babel-core/register",
8+
"build": "babel --presets latest -d dist/ src/"
9+
},
10+
"keywords": [
11+
"js"
12+
],
13+
"author": "pasit.r",
14+
"license": "MIT",
15+
"dependencies": {},
16+
"devDependencies": {
17+
"babel-cli": "^6.18.0",
18+
"babel-core": "^6.18.2",
19+
"babel-preset-latest": "^6.16.0",
20+
"chai": "^3.5.0",
21+
"mocha": "^3.2.0"
22+
}
23+
}

0 commit comments

Comments
 (0)