forked from FormidableLabs/rapscallion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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
{
"name": "rapscallion",
"version": "2.1.6",
"description": "Asynchronous React VirtualDOM renderer for SSR.",
"keywords": [
"react",
"ssr",
"asynchronous",
"render",
"html",
"stream"
],
"main": "index.js",
"scripts": {
"build": "npm run check && rm -rf lib/ && babel -d lib/ src/",
"check": "npm run lint && npm run test",
"test": "mocha spec/exec.js",
"lint": "eslint src spec",
"benchmark": "babel-node benchmark/benchmark.js",
"concurrency": "babel-node benchmark/concurrency.js",
"check-output": "babel-node benchmark/test-html-output.js",
"check-context-output": "babel-node benchmark/test-html-output-with-context.js",
"check-templated-output": "babel-node benchmark/test-templated-output.js"
},
"files": [
"lib",
"babel-plugin-client.js",
"babel-plugin-server.js"
],
"repository": {
"type": "git",
"url": "git://github.com/FormidableLabs/rapscallion.git"
},
"author": "Dale Bustad <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"chai": "^3.5.0",
"eslint": "2.10.2",
"eslint-config-formidable": "^2.0.1",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.9.0",
"mocha": "^3.2.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"stream-throttle": "^0.1.3"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"adler-32": "^1.0.0",
"bluebird": "^3.4.7",
"lodash": "^4.17.4"
}
}