This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.99 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@js-basics/blueprint-npm-module",
"version": "1.3.2",
"description": "blueprint to create npm modules",
"main": "./lib/index.js",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"clean": "rimraf lib",
"test": "npm run lint && npm run cover",
"test:prod": "cross-env BABEL_ENV=production npm run test",
"test:watch": "npm test -- --watch",
"test:examples": "node examples/",
"cover": "nyc npx mocha --recursive",
"lint": "eslint src",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib && npx rollup --config ./.rolluprc",
"prepare": "npm run clean && npm run test && npm run build",
"semantic-release": "semantic-release"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/basics/blueprint-npm-module.git"
},
"keywords": [
"blueprint",
"npm",
"module"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/basics/blueprint-npm-module/issues"
},
"homepage": "https://github.com/basics/blueprint-npm-module#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.0.0",
"babel-preset-minify": "^0.5.1",
"babelrc-rollup": "^3.0.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.5",
"nyc": "^15.0.1",
"rimraf": "^3.0.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"semantic-release": "^17.0.6"
},
"dependencies": {
"core-js": "^3.6.5"
}
}