-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.3 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
60
61
62
63
64
65
66
67
68
{
"name": "template-lib",
"version": "1.0.0",
"description": "Template for Nodejs libraries",
"main": "dist/index.js",
"scripts": {
"_test": "mocha --require @babel/register --require babel-polyfill test/**/*.js",
"_test:exit": "npm run _test -- --exit",
"test": "cross-env NODE_ENV=test npm run _test:exit",
"test:dev": "cross-env NODE_ENV=test npm run _test -- -w",
"test:grep": "cross-env NODE_ENV=test npm run _test -- -g ",
"coverage": "cross-env NODE_ENV=test nyc -- npm run _test:exit",
"build": "rimraf dist/ && babel src --out-dir dist",
"lint": "eslint --config .eslintrc src/index.js",
"benchmark": "radargun benchmark/**/*.bench.js",
"status": "git status",
"start": "babel-node src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AkashBabu/template-lib.git"
},
"author": "001akashbabu@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/AkashBabu/template-lib/issues"
},
"homepage": "https://github.com/AkashBabu/template-lib#readme",
"precommit": [
"lint",
"coverage",
"build",
"benchmark",
"status"
],
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.3",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.6.2",
"@babel/runtime": "^7.6.2",
"babel-eslint": "^10.0.3",
"chai": "^4.1.2",
"cross-env": "^6.0.0",
"eslint": "^6.5.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-class-property": "^1.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-mocha": "^6.1.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-react": "^7.14.3",
"mocha": "^5.2.0",
"nodemon": "^1.19.3",
"nyc": "^12.0.2",
"pre-commit": "^1.2.2",
"radargun": "^1.0.1",
"rimraf": "^2.6.2"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0"
}
}