forked from WebSheets/websheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "websheets",
"version": "0.3.1",
"description": "A spreadsheet component for the web",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.6.0",
"mocha": "^2.4.5",
"webpack": "^1.12.12"
},
"scripts": {
"build": "./node_modules/.bin/babel src --out-dir build --source-maps --no-babelrc --presets es2015",
"prepublish": "rm -rf build/* && npm run build ",
"test": "./node_modules/.bin/mocha --recursive",
"watch": "fswatch -0 src | xargs -0 -n 1 -I {} npm run web",
"web": "./node_modules/.bin/webpack --config=webpack.config.js --progress"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/websheets/websheets.git"
},
"keywords": [
"spreadsheet",
"table",
"excel"
],
"author": "Matt Basta <me@mattbasta.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/websheets/websheets/issues"
},
"homepage": "https://github.com/websheets/websheets",
"dependencies": {
"websheets-core": "^0.2.2"
}
}