-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.97 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
{
"name": "react-for",
"version": "1.0.2",
"description": "A React component library to create loops in JSX",
"main": "lib/index.js",
"scripts": {
"prepare": "npm run tests && npm run lint && npm run docs && git add . && git commit -m \"Preparing package\"",
"build": "node scripts/clear-lib.js && tsc",
"test": "mocha --require babel-core/register --require ./scripts/configure-adapter.js ./test/**/*.spec.jsx",
"tests": "npm run build && npm run test",
"lint:src": "tslint -c tslint.json 'src/*'",
"lint:test": "tslint -c tslint.json 'test/**/*.jsx'",
"lint": "npm run lint:src && npm run lint:test",
"docs": "./node_modules/.bin/typedoc --out docs --name react-for --external-aliases external,hidden --mode file --readme ./base-readme.md --target ES6 --module commonjs --theme markdown ./src/index.tsx && node ./scripts/generate-readme.js"
},
"keywords": [
"for",
"loop",
"react",
"dom",
"jsx",
"while"
],
"homepage": "https://github.com/MJez29/react-for#readme",
"bugs": "https://github.com/MJez29/react-for/issues",
"author": "Michal Jez <[email protected]>",
"license": "MIT",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/MJez29/react-for"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/react": "^16.7.8",
"@types/react-dom": "^16.0.11",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.2.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"mocha": "^5.2.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"sinon": "^7.1.1",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^3.6.0",
"typedoc": "^0.14.2",
"typedoc-plugin-internal-external": "^1.0.10",
"typedoc-plugin-markdown": "^1.1.20",
"typescript": "^3.2.2"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}