-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.63 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "babel-npm-module-example",
"version": "1.0.0",
"author": "anvk",
"main": "dist/developer.js",
"description": "A boilerplate to start writing your NPM modules in ES6 using Babel.",
"contributors": [
{
"name": "Alexey Novak",
"email": "alexey.novak.mail@gmail.com"
}
],
"scripts": {
"lint": "eslint src test",
"build:source": "rimraf dist/ && babel src/ --out-dir dist/",
"build:tests": "rimraf test-dist/ && babel test/ --out-dir test-dist/",
"clean": "rimraf dist/ && rimraf test-dist/",
"build": "npm run build:source && npm run build:tests",
"test": "node node_modules/mocha/bin/mocha --reporter spec test-dist/*",
"example": "node example.js"
},
"repository": {
"type": "git",
"url": "git@github.com:anvk/babel-npm-module-example.git"
},
"keywords": [
"module",
"es6",
"es5",
"babel"
],
"devDependencies": {
"babel-cli": "6.16.0",
"babel-core": "6.16.0",
"babel-eslint": "7.0.0",
"babel-preset-es2015": "6.16.0",
"chai": "3.5.0",
"eslint": "3.6.1",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "2.2.2",
"eslint-plugin-react": "6.3.0",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-eslint": "3.0.1",
"gulp-mocha": "3.0.1",
"gulp-rimraf": "0.2.0",
"mocha": "3.1.0",
"rimraf": "2.5.4",
"run-sequence": "1.2.2"
},
"engine": "node >= 0.10.x",
"homepage": "https://github.com/anvk/babel-npm-module-example",
"bugs": {
"url": "https://github.com/anvk/babel-npm-module-example/issues"
},
"private": false,
"license": "MIT"
}