-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.17 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
40
41
42
{
"name": "compilers-exercise",
"version": "1.0.0",
"description": "",
"engines": {
"node": ">=8.0.0"
},
"main": "src/index.js",
"scripts": {
"test": "mocha src/*.spec.js",
"test-watch": "npm run test -- --watch",
"prepush": "npm test",
"lint": "esw --ext .js,.jsx --ignore-path .gitignore --cache --format node_modules/eslint-formatter-pretty",
"lint-watch": "npm run lint -- --watch",
"start": "node src",
"dev": "echo \"Please add a dev script\""
},
"author": "Gabriel Lebec <glebec@gmail.com> (https://github.com/glebec)",
"license": "MIT",
"homepage": "https://github.com/glebec/functional-math-compiler#readme",
"repository": {
"type": "git",
"url": "https://github.com/glebec/functional-math-compiler"
},
"bugs": "https://github.com/glebec/functional-math-compiler/issues",
"dependencies": {
"daggy": "^1.2.0",
"immutable": "^3.8.2"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"chai": "^4.1.2",
"chai-immutable": "^1.6.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",
"mocha": "^4.1.0"
}
}