-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 970 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 970 Bytes
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
{
"name": "disc-lang",
"version": "0.1.0",
"description": "Interactive programming language - computing for people",
"main": "index.js",
"bin":{
"disc": "./index.js"
},
"scripts": {
"hello": "node ./ ./test/live-tests/hello-world.disc",
"temp": "node ./ ./test/live-tests/temp.disc",
"build": "node ./node_modules/browserify/bin/cmd.js -p tinyify ./web-index.js -o ./dist/disc-lang.min.js",
"build-and-copy-to": "npm run build; cp ./dist/disc-lang.min.js ",
"build-dev": "node ./node_modules/browserify/bin/cmd.js ./web-index.js -o ./dist/disc-lang.min.js",
"test": "node ./node_modules/mocha/bin/mocha ./test/**/*.test.js"
},
"author": "Chris Stead",
"license": "MIT",
"devDependencies": {
"approvals": "^3.0.5",
"browserify": "^16.5.2",
"chai": "^4.2.0",
"diff": "^4.0.2",
"mocha": "^8.0.1",
"tinyify": "^3.0.0"
},
"dependencies": {
"clear": "^0.1.0",
"prompt-sync": "^4.2.0"
}
}