This repository was archived by the owner on Sep 19, 2024. It is now read-only.
forked from artcompiler/L0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.6 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
{
"name": "L0",
"version": "0.0.1",
"description": "Compiler as a service.",
"author": "Art Compiler LLC",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/graffiticode/L0"
},
"scripts": {
"start": "node index.js",
"build": "babel-node tools/build",
"smoke": "mocha --reporter spec --recursive --delay --smoke",
"pretest": "npm run build",
"test": "mocha --reporter spec --recursive --delay",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"watch": "npx nodemon -w src -w index.js -w package.json --exec make",
"deploy:gcloud": "gcloud functions deploy L0 --trigger-http --runtime=nodejs10 --entry-point=compiler"
},
"dependencies": {
"body-parser": "^1.18.3",
"domready": "^1.0.8",
"express": "^4.0.x",
"hashids": "1.1.1",
"morgan": "^1.9.1",
"request": "^2.88.0"
},
"engines": {
"node": "latest"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"devDependencies": {
"@pollyjs/adapter-node-http": "^2.4.0",
"@pollyjs/core": "^2.4.0",
"@pollyjs/persister-fs": "^2.1.0",
"babel": "^6.0.x",
"babel-cli": "^6.4.5",
"babel-plugin-transform-es2015-modules-amd": "^6.8.0",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"babelify": "^7.0.2",
"browserify": "^12.0.1",
"chai": "^4.2.0",
"d3": "4.7.1",
"flow-bin": "^0.32.0",
"json-diff": "^0.5.4",
"mocha": "^6.1.3",
"nodemon": "^1.19.0",
"react": "0.14.5",
"react-dom": "0.14.5",
"supertest": "^4.0.2",
"uglify-js": "^2.7.3"
}
}