-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
54 lines (54 loc) · 1.66 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
{
"name": "assert",
"version": "2.1.0",
"description": "The assert module from Node.js, for the browser.",
"main": "build/assert.js",
"files": [
"build/assert.js",
"build/internal"
],
"license": "MIT",
"homepage": "https://github.com/browserify/commonjs-assert",
"repository": "browserify/commonjs-assert",
"scripts": {
"build": "babel assert.js test.js --out-dir build && babel internal --out-dir build/internal && babel test --out-dir build/test",
"prepare": "npm run build",
"dev": "babel assert.js test.js --watch --out-dir build & babel internal --watch --out-dir build/internal & babel test --watch --out-dir build/test",
"lint": "eslint --ext=js,mjs .",
"pretest": "npm run lint",
"test": "npm run tests-only",
"posttest": "aud --production",
"pretests-only": "npm run build",
"tests-only": "npm run test:nobuild",
"test:nobuild": "tape build/test.js",
"test:source": "tape test.js",
"test:browsers": "airtap build/test.js",
"test:browsers:local": "npm run test:browsers -- --local"
},
"keywords": [
"assert",
"browser"
],
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@ljharb/eslint-config": "^21.1.0",
"airtap": "^2.0.4",
"array-fill": "^1.2.0",
"aud": "^2.0.3",
"core-js": "^3.32.2",
"cross-env": "^5.2.1",
"eslint": "=8.8.0",
"object.entries": "^1.1.7",
"object.getownpropertydescriptors": "^2.1.7",
"tape": "^5.6.6"
},
"dependencies": {
"call-bind": "^1.0.2",
"is-nan": "^1.3.2",
"object-is": "^1.1.5",
"object.assign": "^4.1.4",
"util": "^0.12.5"
}
}