-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "conject",
"version": "0.2.1",
"description": "A mini-script for lazy sync / async conditional evaluation for node and browser",
"main": "lib/conject.js",
"scripts": {
"start": "node lib/conject.js",
"test": "mocha",
"clean": "sh/clean.sh",
"log": "sh/log.sh",
"build-node": "sh/build-node.sh",
"build-node4": "sh/build-node4.sh",
"build-node6": "sh/build-node6.sh",
"build-browser": "sh/build-browser.sh",
"build-ie": "sh/build-ie.sh",
"build": "sh/build.sh",
"jshint": "jshint src/*.js",
"help": "echo 'Grab the source from https://github.com/medenagan/conject to use the build* commands.'"
},
"keywords": [
"async",
"callback",
"front-end"
],
"author": {
"name": "Fabio Mereu",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/medenagan/conject.git"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"babel-plugin-add-module-exports": "^1.0.2",
"browserify": "^16.5.0",
"jshint": "^2.11.0",
"mocha": "^7.1.0",
"uglify-js": "^3.8.0"
},
"engines": {
"node": ">=6"
}
}