1
|
{
|
2
|
"name": "assert",
|
3
|
"description": "The node.js assert module, re-packaged for web browsers.",
|
4
|
"version": "1.5.0",
|
5
|
"dependencies": {
|
6
|
"object-assign": "^4.1.1",
|
7
|
"util": "0.10.3"
|
8
|
},
|
9
|
"devDependencies": {
|
10
|
"mocha": "~1.21.4",
|
11
|
"zuul": "~3.10.0",
|
12
|
"zuul-ngrok": "^4.0.0"
|
13
|
},
|
14
|
"homepage": "https://github.com/browserify/commonjs-assert",
|
15
|
"keywords": [
|
16
|
"assert",
|
17
|
"browser"
|
18
|
],
|
19
|
"license": "MIT",
|
20
|
"main": "./assert.js",
|
21
|
"repository": {
|
22
|
"type": "git",
|
23
|
"url": "git://github.com/browserify/commonjs-assert.git"
|
24
|
},
|
25
|
"scripts": {
|
26
|
"browser-local": "zuul --no-coverage --local 8000 -- test.js",
|
27
|
"test": "npm run test-node && npm run test-browser",
|
28
|
"test-browser": "zuul -- test.js",
|
29
|
"test-native": "TEST_NATIVE=true mocha --ui qunit test.js",
|
30
|
"test-node": "mocha --ui qunit test.js"
|
31
|
}
|
32
|
}
|