-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
40 lines (40 loc) · 1.09 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": "g-lebec-lambda-talk",
"version": "1.0.0",
"description": "A demonstration of the lambda calculus in JavaScript",
"engines": {
"node": ">=8.0.0"
},
"main": "src/index.js",
"scripts": {
"start": "node src",
"test": "node src",
"build": "docco src/index.js",
"precommit": "./bin/build",
"lint": "esw --ext .js,.jsx --ignore-path .gitignore --cache --format node_modules/eslint-formatter-pretty",
"lint-watch": "npm run lint -- --watch",
"dev": "nodemon src"
},
"author": "Gabriel Lebec <[email protected]> (https://github.com/glebec)",
"license": "MIT",
"homepage": "https://github.com/glebec/lambda-talk#readme",
"repository": {
"type": "git",
"url": "https://github.com/glebec/lambda-talk"
},
"bugs": "https://github.com/glebec/lambda-talk/issues",
"dependencies": {
"chalk": "^2.1.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"docco": "^0.7.0",
"eslint": "^3.19.0",
"eslint-config-fullstack": "^3.0.0",
"eslint-formatter-pretty": "^1.1.0",
"eslint-plugin-react": "^7.0.1",
"eslint-watch": "^3.1.0",
"husky": "^0.13.4",
"nodemon": "^1.11.0"
}
}