-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.98 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
{
"name": "binstorm",
"version": "0.1.2",
"description": "BinStorm is a React Native styling utility for rapidly building custom user interfaces",
"main": "./build/index.js",
"scripts": {
"babel-node": "babel-node --",
"build": "./node_modules/.bin/babel src -d build && node dev_utils/copyDir.js build",
"dist": "./node_modules/.bin/babel src -d dist --presets=babili --ignore src/stub && node dev_utils/copyDir.js dist",
"init": "./node_modules/.bin/babel src -d build && node dev_utils/copyDir.js build && node build/index.js init",
"dev": "./node_modules/nodemon/bin/nodemon.js --exec npm run init",
"test": "./node_modules/.bin/mocha --compilers js:babel-core/register --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binbytes/binstorm.git"
},
"keywords": [
"binstorm",
"react-native",
"react-native-style",
"react-native-components",
"component-style",
"components",
"custom-styling",
"design-component",
"nodejs"
],
"author": "Bhavik Charola <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/binbytes/binstorm/issues"
},
"homepage": "https://github.com/binbytes/binstorm#readme",
"dependencies": {
"cli-table": "^0.3.1",
"merge-deep": "^3.0.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-node": "^6.1.1",
"babili": "^0.1.3",
"copy-dir": "^0.4.0",
"eslint": "^5.11.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"power-assert": "^1.4.4",
"prettier": "1.15.3"
},
"nodemonConfig": {
"ignore": [
"theme/*",
"build/*",
"dist/*"
],
"delay": "2500"
},
"preferGlobal": true,
"bin": {
"binstorm": "./dist/index.js"
}
}