UNPKG

2.27 kBJSONView Raw
1{
2 "name": "plait",
3 "version": "0.7.0",
4 "description": "A minimal JavaScript framework for building reactive web components",
5 "main": "lib/index.js",
6 "jsnext:main": "src/index.js",
7 "files": [
8 "src/",
9 "lib/",
10 "dist/"
11 ],
12 "directories": {
13 "example": "examples",
14 "test": "test"
15 },
16 "scripts": {
17 "test": "gulp test",
18 "prepublish": "gulp build",
19 "docs:clean": "rm -rf _book",
20 "docs:prepare": "gitbook install",
21 "docs:build": "npm run docs:prepare && gitbook build -g wildlyinaccurate/plait && gulp buildExamples && cp examples/dist/* _book/examples",
22 "docs:watch": "npm run docs:prepare && gitbook serve",
23 "docs:publish": "npm run docs:clean && npm run docs:build && 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 git@github.com:wildlyinaccurate/plait gh-pages --force"
24 },
25 "author": {
26 "name": "Joseph Wynn",
27 "email": "joseph@wildlyinaccurate.com",
28 "url": "https://github.com/wildlyinaccurate"
29 },
30 "license": "MIT",
31 "dependencies": {
32 "dom-delegator": "^13.1.0",
33 "ramda": "^0.19.0",
34 "redux": "^3.0.5",
35 "redux-thunk": "^1.0.3",
36 "virtual-dom": "^2.1.1"
37 },
38 "devDependencies": {
39 "babel-preset-es2015": "^6.3.13",
40 "babelify": "^7.2.0",
41 "browserify": "^12.0.1",
42 "gitbook-cli": "^1.0.1",
43 "gulp": "^3.9.0",
44 "gulp-babel": "^6.1.1",
45 "gulp-connect": "^2.3.1",
46 "gulp-cucumber": "0.0.14",
47 "gulp-jasmine": "^2.2.1",
48 "gulp-rename": "^1.2.2",
49 "gulp-replace": "^0.5.4",
50 "gulp-sourcemaps": "^1.6.0",
51 "gulp-uglify": "^1.5.1",
52 "isomorphic-fetch": "^2.2.0",
53 "jsx-transform": "^2.2.1",
54 "merge-stream": "^1.0.0",
55 "vinyl-buffer": "^1.0.0",
56 "vinyl-source-stream": "^1.1.0",
57 "zombie": "^4.2.1"
58 },
59 "repository": {
60 "type": "git",
61 "url": "git+https://github.com/wildlyinaccurate/plait.git"
62 },
63 "bugs": {
64 "url": "https://github.com/wildlyinaccurate/plait/issues"
65 },
66 "homepage": "https://wildlyinaccurate.com/plait/",
67 "keywords": [
68 "plait",
69 "reactive",
70 "functional",
71 "immutable",
72 "state",
73 "redux",
74 "react",
75 "jsx",
76 "elm",
77 "startapp"
78 ]
79}