-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.45 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "djembe",
"version": "2.0.0",
"description": "A rhythm maker which emits any data with the given rhythm periodically",
"main": "dist/bundle.umd.js",
"module": "dist/bundle.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/M-Nasab/Djembe.git"
},
"scripts": {
"clean": "rimraf dist/*",
"build": "npm run clean && run-p build:*",
"build:development": "cross-env NODE_ENV=development rollup -c",
"build:production": "cross-env NODE_ENV=production rollup -c",
"lint": "eslint 'src/**/*.js'",
"lint:fix": "eslint --fix 'src/**/*.js'",
"test": "jest",
"test:watch": "jest --watch",
"dev": "npm run test:watch",
"prepublishOnly": "npm run build",
"coverage": "jest --coverage"
},
"keywords": [
"Rhythm",
"Event Emitter"
],
"author": "Mostafa Amini Nasab <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"babel-jest": "^26.6.3",
"cross-env": "^7.0.3",
"eslint": "^7.22.0",
"eslint-plugin-jest": "^24.3.2",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.42.1",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"epicles": "^2.1.2"
}
}