forked from unassert-js/unassertify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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": "unassertify",
"description": "Browserify transform for unassert: Encourages programming with assertions by providing tools to compile them away",
"version": "2.1.1",
"author": {
"name": "Takuto Wada",
"email": "[email protected]",
"url": "https://github.com/twada"
},
"bugs": "https://github.com/unassert-js/unassertify/issues",
"contributors": [
{
"name": "Renée Kooi",
"url": "https://github.com/goto-bus-stop"
}
],
"dependencies": {
"acorn": "^5.1.0",
"convert-source-map": "^1.1.1",
"escodegen": "^1.6.1",
"multi-stage-sourcemap": "^0.2.1",
"through": "^2.3.7",
"unassert": "^1.3.1"
},
"devDependencies": {
"browserify": "^13.1.0",
"coffeeify": "^2.0.0",
"espower-loader": "^1.0.1",
"event-stream": "^3.3.4",
"intelli-espower-loader": "^1.0.1",
"jshint": "^2.9.3",
"mocha": "^3.0.2",
"power-assert": "^1.4.1"
},
"files": [
"README.md",
"CHANGELOG.md",
"LICENSE",
"index.js",
"package.json"
],
"homepage": "https://github.com/unassert-js/unassertify",
"keywords": [
"DbC",
"unassert",
"assert",
"assertion",
"browserify",
"browserify-transform"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/unassert-js/unassertify.git"
},
"scripts": {
"lint": "jshint index.js",
"test": "npm run lint && mocha --require intelli-espower-loader"
}
}