forked from fluffynuts/synchronous-promise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.16 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
{
"name": "synchronous-promise",
"version": "1.0.10",
"description": "Synchronous Promise-like prototype to use in testing where you would have used an ES6 Promise",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/fluffynuts/synchronous-promise.git"
},
"scripts": {
"preautotest-once": "node -e \"console.log('Tests started: ', new Date());\"",
"autotest-once": "mocha *.spec.js --reporter mocha-yar",
"autotest": "nodemon -q -x \"run-s -s autotest-once\"",
"autolint": "nodemon -q -x \"run-s -s lint\"",
"lint": "jslint index.js",
"pretest": "run-s lint",
"test": "mocha index.spec.js",
"predist": "mkdirp dist",
"dist": "browserify browser.js -o dist/synchronous-promise.js",
"prepublish": "run-s -s test dist"
},
"author": "Davyd McColl <[email protected]> (https://github.com/fluffynuts)",
"license": "BSD-3-Clause",
"devDependencies": {
"browserify": "^14.1.0",
"chai": "^3.5.0",
"jslint": "^0.10.1",
"mkdirp": "^0.5.1",
"mocha": "^2.5.3",
"mocha-yar": "^1.0.10",
"nodemon": "^1.10.2",
"npm-run-all": "^2.3.0",
"run-sequence": "^1.2.2"
}
}