-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
57 lines (57 loc) · 1.74 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
52
53
54
55
56
57
{
"name": "the-super-tiny-interpreter",
"version": "1.0.3",
"description": "Explain what a closure is by writing a JavaScript interpreter in JavaScript",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib coverage",
"build:babel": "babel src --out-dir lib --ignore __tests__",
"build": "npm run clean && npm run lint && npm test && npm run build:babel",
"test": "jest",
"coverage": "jest --coverage",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"lint": "eslint src",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keyanzhang/the-super-tiny-interpreter.git"
},
"keywords": [],
"author": "Keyan Zhang <root@keyanzhang.com> (http://keya.nz)",
"license": "MIT",
"bugs": {
"url": "https://github.com/keyanzhang/the-super-tiny-interpreter/issues"
},
"homepage": "https://github.com/keyanzhang/the-super-tiny-interpreter#readme",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-jest": "^14.1.0",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"coveralls": "^2.11.9",
"eslint": "^3.2.2",
"eslint-config-airbnb-base": "^5.0.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^1.6.0",
"jest-cli": "^14.1.0",
"rimraf": "^2.5.2"
},
"dependencies": {
"babel-polyfill": "^6.9.0",
"babylon": "^6.7.0",
"fbjs": "^0.8.0",
"immutable": "^3.8.0"
},
"jest": {
"automock": false,
"testPathDirs": [
"<rootDir>/src"
]
},
"tonicExampleFilename": "examples/tonic/tonicExample.js"
}