-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·47 lines (47 loc) · 1.33 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
{
"name": "fast-react-render",
"version": "1.2.3",
"description": "Fast tool for render react to string",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/alt-j/fast-react-render.git"
},
"keywords": [
"react",
"render",
"server",
"performance",
"optimization",
"speed",
"html"
],
"author": "Andrey Morozov <[email protected]>",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"test": "npm run lint && npm run test-cov",
"test-cov": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --recursive --check-leaks",
"test-coveralls": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"lint": "./node_modules/.bin/eslint . --quiet",
"benchmark": "node ./tools/benchmark"
},
"devDependencies": {
"chai": "3.5.0",
"coveralls": "2.11.12",
"eslint": "2.5.3",
"eslint-config-loris": "5.1.0",
"git-hooks": "1.1.0",
"istanbul": "0.4.5",
"lru-cache": "4.0.1",
"mocha": "3.0.2",
"mocha-lcov-reporter": "1.2.0",
"react": "15.3.1",
"fast-react-benchmark": "1.3.0"
},
"dependencies": {
"uuid": "2.0.2"
}
}