-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
114 lines (114 loc) · 3.22 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "shasta-data-view",
"version": "0.0.2",
"description": "Lightweight data view abstraction for managing fetching/loaded/errored states for remote data",
"main": "dist/index.js",
"keywords": [
"shasta",
"shastajs",
"data",
"view",
"shastaplugin",
"shastaview",
"redux",
"react",
"api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/shastajs/shasta-data-view.git"
},
"author": "Contra <[email protected]> (http://contra.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shastajs/shasta-data-view/issues"
},
"homepage": "https://github.com/shastajs/shasta-data-view#readme",
"files": [
"dist"
],
"scripts": {
"preversion": "npm run clean && npm run build && npm docs",
"postversion": "npm run changelog",
"build": "babel src --out-dir dist",
"clean": "rimraf dist",
"lint": "eslint src",
"changelog": "github-changes -o contra -r shasta-data-view -b master -f ./CHANGELOG.md --order-semver --use-commit-body",
"test": "npm run-script lint && npm run test:node",
"test:node": "mocha --compilers js:babel-register --recursive --reporter spec",
"test:browser": "mochify --transform babelify --recursive --reporter spec",
"docs": "npm run docs:pre && npm run docs:build && npm run docs:publish",
"docs:pre": "gitbook install && rimraf _book",
"docs:build": "gitbook build -g shastajs/shasta-data-view",
"docs:publish": "cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push [email protected]:shastajs/shasta-data-view gh-pages --force"
},
"peerDependencies": {
"shasta": "*"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.4.3",
"babelify": "^7.2.0",
"eslint": "^1.10.3",
"eslint-cli": "^1.0.0",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-react": "^3.15.0",
"gitbook-cli": "^1.0.1",
"github-changes": "^1.0.1",
"immutable": "^3.7.6",
"mocha": "^2.3.4",
"mochify": "dylanfm/mochify.js",
"react": "^0.14.7",
"react-dom": "^15.3.2",
"rimraf": "^2.5.0",
"shasta": "shastajs/shasta",
"should": "^8.0.0"
},
"babel": {
"sourceMaps": "inline",
"presets": [
"es2015",
"react",
"stage-0"
],
"plugins": [
"transform-runtime",
"add-module-exports"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "rackt",
"env": {
"browser": true,
"node": true,
"es6": true
},
"ecmaFeatures": {
"modules": true
},
"rules": {
"semi": [
2,
"never"
]
}
},
"dependencies": {
"babel-runtime": "^6.3.19",
"lodash.pick": "^4.0.1",
"lodash.reduce": "^4.0.1",
"lodash.some": "^4.0.1",
"immutable": "^3.0.0"
}
}