-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 KB
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
{
"name": "cellularjs",
"version": "0.3.0",
"main": "dist/cellular.js",
"keywords": [
"spreadsheet"
],
"repository": {
"url": "https://github.com/lancefisher/cellularjs"
},
"author": "Lance Fisher <lance@fisher.io>",
"license": "MIT",
"scripts": {
"test": "jest --watch",
"cover": "jest --coverage",
"repl": "babel-node src/repl",
"lint": "eslint src",
"present": "cp .vscode/settings.present.json .vscode/settings.json",
"unpresent": "rm .vscode/settings.json",
"build": "webpack --config webpack.config.js"
},
"devDependencies": {
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"jest": "^20.0.4",
"webpack": "^2.2.1"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"chalk": "^1.1.3",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0"
}
}