-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.59 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
51
52
53
54
55
56
{
"name": "@onedevstudio/lib-starter-kit",
"libName": "StarterKit",
"version": "1.3.0",
"description": "👉🏼 A starter kit for your new library, using rollup, mocha, chai and nyc",
"main": "lib/starterkit.js",
"unpkg": "lib/umd/starterkit.js",
"module": "lib/es/starterkit.js",
"scripts": {
"build": "rollup -c",
"lint": "eslint .",
"jest": "jest --coverage --no-cache --env=node",
"test": "yarn lint && yarn jest",
"pub": "yarn test && npm publish --access=public",
"test:watch": "yarn jest -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onedevstudio/lib-starter-kit.git"
},
"keywords": [
"lib",
"starter",
"kit",
"starter-kit"
],
"author": "Fernando Moreira <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/onedevstudio/lib-starter-kit/issues"
},
"homepage": "https://github.com/onedevstudio/lib-starter-kit#readme",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"babel-jest": "^24.9.0",
"chai": "^4.2.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"prettier": "^1.19.1",
"rollup": "^1.27.12",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-terser": "^5.1.3"
},
"jest": {
"automock": false,
"verbose": true
}
}