-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 2 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
{
"name": "react-spreadsheet",
"version": "0.3.1",
"description": "A pluggable spreadsheet component.",
"main": "lib/Spreadsheet.js",
"bugs": "https://github.com/asm-products/sheetsh-react-spreadsheet/issues",
"repository": {
"type": "git",
"url": "https://github.com/asm-products/sheetsh-react-spreadsheet"
},
"dependencies": {
"formulajs": "1.0.2",
"mousetrap": "*",
"mori": "^0.2.x",
"wolfy-eventemitter": "^0.1.0",
"selix": "^1.1.0",
"react": "^0.12.2"
},
"devDependencies": {
"coffee-script": "^1.8.0",
"less": "^1.7.4",
"mocha": "^1.21.4",
"jquery": "^2.1.1",
"chai": "^1.9.1",
"jison": "^0.4.15",
"coffeeify": "^1.0.0",
"browserify": "^8.0.3",
"mocha-phantomjs": "^3.5.2"
},
"scripts": {
"prepublish": "npm run jison && npm run compile-css && ./node_modules/.bin/coffee -c --bare --output lib/ src/ && cp ./src/*.js ./lib/",
"jison": "jison ./src/formula-parser.jison -o ./src/formula-parser-pre.js && cat ./src/formula-parser-pre.js ./src/formula-parser-includes.js > ./src/formula-parser.js",
"compile-css": "./node_modules/.bin/lessc --clean-css style.less react-spreadsheet.css",
"compile": "browserify -t coffeeify --extension=\".coffee\" --standalone Spreadsheet ./src/browser.coffee > ./dist/spreadsheet.js",
"host": "npm run compile-css && npm run jison && npm run compile && python -m SimpleHTTPServer 3000",
"test-phantom": "npm run jison && browserify -t coffeeify --extension=\".coffee\" ./tests/tests.coffee > ./tests/bundle.js && mocha-phantomjs ./tests/index.html",
"test-browser": "npm run jison && browserify -t coffeeify --extension=\".coffee\" ./tests/tests.coffee > ./tests/bundle.js && python -m SimpleHTTPServer 4000",
"test": "npm run test-phantom"
},
"keywords": [
"react-component",
"spreadsheet"
],
"author": "Giovanni T. Parra",
"licenses": [
{
"type": "AGPL",
"url": "https://github.com/asm-products/sheetsh-react-spreadsheet/blob/master/LICENSE"
}
]
}