-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1016 Bytes
/
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
{
"name": "react-orbit",
"version": "0.0.1",
"description": "React bindings for Orbit.js",
"main": "lib/index.js",
"repository": "https://github.com/selvagsz/react-orbit.git",
"author": "selvagsz <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"clean": "rm -rf lib",
"build:commonjs": "./node_modules/.bin/babel src --out-dir lib",
"build": "npm run clean && npm run build:commonjs",
"prepublish": "npm run build",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.js": [
"./node_modules/.bin/prettier --print-width 100 --single-quote --trailing-comma es5 --write",
"git add"
]
},
"keywords": [
"react",
"reactjs",
"orbit",
"orbitjs",
"state management"
],
"files": [
"lib",
"dist",
"src"
],
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"prettier": "1.19.1"
}
}