-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 2.15 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "glisp",
"version": "0.3.0",
"description": "A simple lisp interpreter in JS.",
"main": "lib/index.js",
"author": "Ramanpreet Nara",
"license": "ISC",
"scripts": {
"clean": "rimraf lib",
"commit": "git cz",
"prebuild": "npm run clean",
"build": "rollup -c",
"build:watch": "npm run build -- --watch",
"prepublish": "npm run build",
"repl": "node repl",
"serve:dev": "http-server -p 8080 .",
"prerelease": "npm test",
"release": "standard-version",
"postrelease": "git push --follow-tags && npm publish",
"test": "cross-env NODE_ENV=test nyc ava",
"test:watch": "ava -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsnara/glisp.git"
},
"keywords": [
"G",
"LISP",
"Interpreter"
],
"files": [
"lib",
"index.html",
"repl.js"
],
"ava": {
"babel": "inherit",
"require": [
"babel-register"
]
},
"nyc": {
"all": true,
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90,
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": false,
"instrument": false,
"check-coverage": true,
"include": [
"src/**/*.js"
]
},
"bugs": {
"url": "https://github.com/rsnara/glisp/issues"
},
"homepage": "https://github.com/rsnara/glisp#readme",
"devDependencies": {
"ava": "^0.16.0",
"babel-plugin-istanbul": "^1.0.3",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"chalk": "^1.1.3",
"commitizen": "^2.8.2",
"coveralls": "^2.11.12",
"cross-env": "^2.0.0",
"cz-conventional-changelog": "^1.1.6",
"eslint": "^3.2.2",
"eslint-config-rsnara": "^1.1.0",
"http-server": "^0.9.0",
"nyc": "^7.1.0",
"rollup": "^0.34.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-watch": "^2.5.0",
"standard-version": "^2.4.0",
"testdouble": "^1.6.0"
},
"dependencies": {
"immutable": "^3.8.1",
"iterall": "^1.0.2",
"mathjs": "^3.3.0",
"ramda": "^0.21.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}