forked from nadbm/react-datasheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.88 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
67
68
69
{
"name": "@classdojo/react-datasheet",
"version": "0.1.1",
"description": "Excel-like data grid for React",
"repository": {
"type": "git",
"url": "ssh://[email protected]/classdojo/react-datasheet.git"
},
"author": "Nadim Islam",
"license": "MIT",
"bugs": {
"url": "https://github.com/nadbm/react-datasheet/issues"
},
"keywords": [
"react-component",
"react"
],
"scripts": {
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"clean": "rimraf dist",
"build": "babel ./src --out-dir ./lib && cp src/react-datasheet.css lib",
"build:watch": "watch 'npm run build' ./src",
"prepublish": "npm run build",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "NODE_ENV=test nyc -- mocha ./test/**/*.js --compilers js:babel-register",
"test:watch": "watch 'npm run test' ./test ./src"
},
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-es2015-modules-umd": "^6.24.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.5.0",
"chai": "^3.5.0",
"coveralls": "^2.13.0",
"cross-env": "^4.0.0",
"enzyme": "^2.2.0",
"eslint": "^2.7.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-react": "^4.2.3",
"expect": "^1.20.2",
"jsdom": "^8.1.0",
"mocha": "^2.4.5",
"mocha-jsdom": "^1.1.0",
"nodemon": "^1.9.1",
"nyc": "^10.2.0",
"prop-types": "^15.5.10",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0",
"rimraf": "^2.6.1",
"sinon": "^1.17.3",
"watch": "^1.0.2"
},
"peerDependencies": {
"react": ">=15.3.0",
"react-dom": ">=15.3.0",
"prop-types": "^15.5.9"
},
"dependencies": {},
"files": [
"lib"
],
"main": "lib/index.js"
}