-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.37 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": "walky-talky",
"version": "0.0.1",
"author": "Kamlesh Chandnani <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/kamleshchandnani/walky-talky#readme",
"description": "A tiny JS library to create a message channel using Publish/Subscribe pattern",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": ["dist"],
"scripts": {
"clean": "rimraf dist",
"build": "run-s clean && mkdir dist && run-p build:es build:cjs",
"build:es": "NODE_ENV=es babel index.js -o dist/index.es.js",
"build:cjs": "NODE_ENV=cjs babel index.js -o dist/index.js",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kamleshchandnani/walky-talky.git"
},
"keywords": ["utils", "message", "connect", "communicate", "eventbus", "pubsub"],
"lint-staged": {
"*.js": ["eslint"]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-kamlesh": "git+https://github.com/kamleshchandnani/babel-preset-kamlesh.git",
"babel-preset-minify": "^0.2.0",
"eslint": "^4.11.0",
"eslint-config-kamlesh": "git+https://github.com/kamleshchandnani/eslint-config-kamlesh.git",
"husky": "^0.14.3",
"lint-staged": "^5.0.0",
"npm-run-all": "^4.1.2",
"uglify-es": "^3.2.2"
}
}