Skip to content
This repository was archived by the owner on Aug 10, 2018. It is now read-only.

Commit d4ac719

Browse files
committed
init npm project
1 parent e42470f commit d4ac719

8 files changed

+114
-0
lines changed

.babelrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"presets": ["es2015"],
3+
"plugins": [
4+
"transform-es3-member-expression-literals",
5+
"transform-es3-property-literals",
6+
["transform-runtime", {
7+
"polyfill": false,
8+
"regenerator": true
9+
}]
10+
]
11+
}

.eslintrc.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": "airbnb",
3+
"rules": {
4+
"object-curly-spacing": ["error", "never"],
5+
"consistent-return": "off",
6+
"no-param-reassign": "off",
7+
"no-underscore-dangle": "off",
8+
"max-len": ["error", {
9+
"ignoreComments": true,
10+
"code": 100
11+
}]
12+
}
13+
}

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<<<<<<< HEAD
12
# Logs
23
logs
34
*.log
@@ -35,3 +36,9 @@ jspm_packages
3536

3637
# Optional REPL history
3738
.node_repl_history
39+
=======
40+
node_modules
41+
lib
42+
doc
43+
44+
>>>>>>> init npm project

.npmignore

Whitespace-only changes.

.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
language: node_js
2+
node_js:
3+
- "6"

Makefile

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
all: lib
3+
4+
validate: lint test es5-test
5+
6+
re: clean lib
7+
8+
clean:
9+
@rm -rf lib
10+
11+
lint:
12+
@eslint src
13+
14+
test:
15+
@mocha
16+
17+
es5-test: re
18+
@FOODCHAIN_ECMA=5 mocha
19+
20+
lib:
21+
@babel src --out-dir lib
22+
23+
doc:
24+
@jsdoc src/queryset.js -t ./node_modules/docdash -d doc
25+
26+
.PHONY: doc test

package.json

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"name": "foodchain",
3+
"version": "0.0.1",
4+
"description": "Describe resources as promise dependencies",
5+
"main": "lib",
6+
"scripts": {
7+
"prepublish": "make validate",
8+
"test": "make test"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/SmartImpulse/foodchain.git"
13+
},
14+
"author": "Smart Impulse",
15+
"license": "MIT",
16+
"bugs": {
17+
"url": "https://github.com/SmartImpulse/foodchain/issues"
18+
},
19+
"engines": {
20+
"node": ">=6.0.0"
21+
},
22+
"homepage": "https://github.com/SmartImpulse/foodchain#readme",
23+
"dependencies": {
24+
},
25+
"devDependencies": {
26+
"babel-cli": "6.10.1",
27+
"babel-core": "6.10.4",
28+
"babel-plugin-transform-es2015-block-scoping": "6.15.0",
29+
"babel-plugin-transform-es2015-classes": "6.14.0",
30+
"babel-plugin-transform-es3-member-expression-literals": "6.8.0",
31+
"babel-plugin-transform-es3-property-literals": "6.8.0",
32+
"babel-plugin-transform-proto-to-assign": "6.9.0",
33+
"babel-plugin-transform-runtime": "^6.15.0",
34+
"babel-polyfill": "6.9.1",
35+
"babel-preset-es2015": "6.9.0",
36+
"babel-preset-stage-0": "6.5.0",
37+
"babel-register": "6.16.3",
38+
"chai": "3.5.0",
39+
"docdash": "0.4.0",
40+
"eslint": "3.0.0",
41+
"eslint-config-airbnb": "9.0.1",
42+
"eslint-plugin-import": "1.10.0",
43+
"eslint-plugin-jsx-a11y": "1.5.3",
44+
"eslint-plugin-react": "5.2.2",
45+
"mocha": "2.5.3",
46+
"sinon": "1.17.4"
47+
},
48+
"babel": {
49+
"presets": [
50+
"es2015",
51+
"stage-0"
52+
]
53+
}
54+
}

src/index.js

Whitespace-only changes.

0 commit comments

Comments
 (0)