-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "promise",
"version": "0.1.0",
"description": "A `Promise` implementation spec-complaint optimised for readability.",
"main": "index.js",
"scripts": {
"suite": "node tests/suite.js && node tests/compiler.js",
"lint": "eslint tests/*.js tests/**/*.js",
"preassert:browser": "browserify ./tests/node.js -o ./tests/browser.js",
"assert:browser": "open ./tests/browser.html",
"assert:node": "node ./tests/node.js",
"preassert": "npm run suite",
"assert": "npm run assert:node && npm run assert:browser",
"test": "npm run lint && npm run assert"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brunoscopelliti/promise.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/brunoscopelliti/promise/issues"
},
"homepage": "https://github.com/brunoscopelliti/promise#readme",
"dependencies": {
"browserify": "14.5.0",
"chalk": "2.3.0",
"eslint": "4.11.0",
"eslint-config-bruno": "1.2.0",
"glob": "7.1.2",
"handlebars": "4.0.11",
"open": "0.0.5",
"pre-commit": "1.2.2",
"sinon": "4.1.2",
"tap": "10.7.3"
}
}