-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 845 Bytes
/
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
{
"name": "js-compiler",
"version": "0.1.0",
"description": "A small js compiler build following the jamesklye tutorial",
"main": "tokenizer.js",
"dependencies": {
"assert": "^1.4.1",
"js-beautify": "^1.7.5",
"next": "^6.0.3",
"react": "^16.4.0",
"react-ace": "^6.1.1",
"react-dom": "^16.4.0",
"react-grid-system": "^4.0.1",
"standard": "^11.0.1"
},
"devDependencies": {},
"scripts": {
"test": "standard --fix",
"dev": "next",
"build": "next build",
"start": "next start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saulflores95/js-compiler.git"
},
"author": "Saul Flores",
"license": "MIT",
"bugs": {
"url": "https://github.com/saulflores95/js-compiler/issues"
},
"homepage": "https://github.com/saulflores95/js-compiler#readme"
}