-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.58 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.58 KB
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
62
63
64
{
"name": "assert.js",
"version": "1.0.0-alpha.1",
"description": "A simple javascript runtime assertion library that focuses on performance",
"main": "dist/assert.cjs.js",
"module": "dist/assert.esm.js",
"browser": "dist/assert.umd.js",
"minified": "dist/assert.min.js",
"types": "index.d.ts",
"scripts": {
"start": "cross-env NODE_ENV=development rollup -c -w",
"test": "echo \"No tests specified\"",
"prebuild": "shx rm -rf .rpt2_cache dist index.d.ts",
"build": "cross-env NODE_ENV=production rollup -c",
"postbuild": "dts-bundle --configJson dts-bundle.json",
"predocs": "shx rm -rf docs",
"docs": "typedoc --out docs src"
},
"config": {
"umd_variable_name": "assert"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/assertjs/assert.js.git"
},
"keywords": [
"assert",
"assertions",
"testing"
],
"contributors": [
{
"name": "Michał Jamrożek",
"url": "https://github.com/mtronix"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/assertjs/assert.js/issues"
},
"homepage": "https://github.com/assertjs/assert.js#readme",
"devDependencies": {
"cross-env": "^5.1.4",
"dts-bundle": "0.7.3",
"rollup": "0.56.5",
"rollup-plugin-sourcemaps": "0.4.2",
"rollup-plugin-typescript2": "0.12.0",
"rollup-plugin-uglify": "^3.0.0",
"shx": "0.2.2",
"typedoc": "0.11.1",
"typescript": "2.7.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"lib",
"dist",
"index.d.ts"
]
}