-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.63 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
{
"name": "kobra",
"version": "0.3.4",
"author": "John Sylvain <[email protected]>",
"license": "MIT",
"description": "Minimal JavaScript Framework",
"main": "dist/kobra.cjs.js",
"module": "dist/kobra.esm.js",
"browser": "dist/kobra.umd.js",
"source": "src/index.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"release": "npm t && git tag $npm_package_version && git push && git push --tags && npm publish",
"prepublishOnly": "npm run build",
"precommit": "lint-staged",
"lint": "eslint --ignore-path .gitignore --ignore-path .prettierignore \"src/*.{js,jsx}\"",
"lint:fix": "npm run lint --fix",
"docs": "docsify serve docs"
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.3.4",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"docsify-cli": "^4.3.0",
"eslint": "5.15.1",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-prettier": "3.0.1",
"jest": "^24.3.1",
"prettier": "1.16.4",
"rollup": "^1.6.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1"
},
"dependencies": {
"matchit": "^1.0.7",
"staten": "^0.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnsylvain/kobra.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/johnsylvain/kobra/issues"
},
"homepage": "https://github.com/johnsylvain/kobra#readme"
}