-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "persistent-c",
"version": "11.2.2",
"description": "A C language step-by-step evaluator written in JavaScript and using persistent (immutable) data structures.",
"main": "index.js",
"scripts": {
"test": "babel-tape-runner ./spec/**/*.spec.js | tap-spec",
"build": "babel src --out-dir dist && cp package.json dist/",
"watch": "babel src --out-dir dist --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epixode/persistent-c.git"
},
"keywords": [
"C",
"evaluator",
"persistent"
],
"author": "epixode (https://epixode.fr)",
"license": "MIT",
"bugs": {
"url": "https://github.com/epixode/persistent-c/issues"
},
"homepage": "https://github.com/epixode/persistent-c#readme",
"devDependencies": {
"babel-cli": "^6",
"babel-plugin-transform-object-rest-spread": "^6",
"babel-preset-es2015": "^6",
"babel-tape-runner": "^2.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.4.0"
},
"dependencies": {
"immutable": "^3.7.6",
"text-encoding-utf-8": "^1.0.1"
}
}