-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·39 lines (39 loc) · 1.16 KB
/
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
38
39
{
"name": "@gdbots/common",
"version": "1.0.2",
"description": "Common classes and utils for js projects.",
"repository": {
"type": "git",
"url": "https://github.com/gdbots/common-js.git"
},
"license": "Apache-2.0",
"scripts": {
"build": "BABEL_ENV=es6 babel src --out-dir ./dist/ && cp -R ./dist/* .",
"clean": "rimraf dist",
"lint": "eslint src tests",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build",
"test": "BABEL_ENV=test tape -r ./tests/babel-register.js './tests/**/*.test.js' | faucet"
},
"module": "./index.js",
"jsnext:main": "./index.js",
"dependencies": {
"lodash": "^4.17.4",
"lodash-es": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"faucet": "^0.0.1",
"rimraf": "^3.0.0",
"tape": "^4.11.0"
}
}