-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "rtable",
"version": "0.0.0",
"description": "AJAX-powered table / data grid, powered by React and inspired by JQGrid.",
"scripts": {
"mocha": "mocha --compilers js:babel-core/register",
"lint": "eslint src/*.js* test/*.js*",
"rollup": "rollup -c && rollup -c -o dist/rtable.es6.js -f es6",
"prebuild": "npm run test",
"build": "npm run rollup",
"pretest": "npm run lint",
"test": "npm run mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kos/rtable.git"
},
"author": "Tomasz Wesołowski <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kos/rtable/issues"
},
"homepage": "https://github.com/Kos/rtable#readme",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-preset-es2015-rollup": "^1.1.1",
"bootstrap": "^3.3.6",
"eslint": "^2.1.0",
"eslint-plugin-react": "^4.0.0",
"expect": "^1.14.0",
"expect-jsx": "^2.3.0",
"jsdom": "^8.0.4",
"mocha": "^2.4.5",
"rollup": "^0.25.2",
"rollup-plugin-babel": "^2.3.9",
"sinon": "^1.17.3"
},
"dependencies": {
"react": "^0.14.7",
"react-dom": "^0.14.7"
}
}