Files: bd151b3444051218586e6db524d1767d208bc086 / package.json
1891 bytesRaw
1 | { |
2 | "name": "production-todomvc", |
3 | "version": "0.0.0", |
4 | "description": "production-quality TodoMVC example", |
5 | "main": "index.js", |
6 | "scripts": { |
7 | "postinstall": "lnfs app node_modules/app", |
8 | "lint": "snazzy", |
9 | "format": "snazzy --format", |
10 | "test": "(npm run spec & npm run feature)", |
11 | "spec": "node spec", |
12 | "feature": "node feature", |
13 | "dev:client": "budo client --dir assets --serve bundle.js --live -- -d", |
14 | "dev:server": "nodemon server", |
15 | "prod:client": "browserify client -o assets/bundle.js -g uglifyify", |
16 | "prod:server": "node server", |
17 | "dev": "npm-run-all -p dev:*", |
18 | "prod": "npm-run-all -s prod:*" |
19 | }, |
20 | "browserify": { |
21 | "transform": [ |
22 | "babelify", |
23 | "sheetify/transform" |
24 | ] |
25 | }, |
26 | "repository": { |
27 | "type": "git", |
28 | "url": "git+https://github.com/ahdinosaur/production-todomvc.git" |
29 | }, |
30 | "keywords": [ |
31 | "todomvc", |
32 | "example", |
33 | "react", |
34 | "redux", |
35 | "frp", |
36 | "functional", |
37 | "reactive", |
38 | "immutable", |
39 | "feathers", |
40 | "ddd", |
41 | "tcomb" |
42 | ], |
43 | "author": "Mikey <michael.williams@enspiral.com> (http://dinosaur.is)", |
44 | "license": "ISC", |
45 | "bugs": { |
46 | "url": "https://github.com/ahdinosaur/production-todomvc/issues" |
47 | }, |
48 | "homepage": "https://github.com/ahdinosaur/production-todomvc#readme", |
49 | "engines": { |
50 | "node": "^4.0.0", |
51 | "npm": "^3.0.0" |
52 | }, |
53 | "devDependencies": { |
54 | "budo": "^6.1.0", |
55 | "cuke-tap": "^1.0.2", |
56 | "jsdom": "^7.1.0", |
57 | "nodemon": "^1.8.1", |
58 | "tape": "^4.2.2" |
59 | }, |
60 | "dependencies": { |
61 | "babel-core": "^6.2.1", |
62 | "babel-plugin-transform-object-rest-spread": "^6.1.18", |
63 | "babel-preset-es2015": "^6.1.18", |
64 | "babel-preset-react": "^6.1.18", |
65 | "babelify": "^7.2.0", |
66 | "evalify": "^1.0.1", |
67 | "feathers": "^1.2.0", |
68 | "lnfs-cli": "^1.0.1", |
69 | "npm-run-all": "^1.3.2", |
70 | "ramda": "^0.18.0", |
71 | "sheetify": "^3.1.0", |
72 | "uglifyify": "^3.0.1" |
73 | } |
74 | } |
75 |
Built with git-ssb-web