-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 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
{
"name": "assert-js",
"version": "1.0.0",
"description": "Javascript simple assertion library with no dependencies.",
"main": "bin/es5/assert-js.js",
"scripts": {
"test": "node_modules/.bin/madge src/ --circular && node_modules/.bin/mocha --require @babel/register --reporter dot tests/AssertJS --recursive",
"build": "npm run test && node_modules/.bin/babel src --out-dir bin/es5 && node_modules/.bin/webpack --config webpack.config.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "[email protected]:Tiliqua/assert-js.git"
},
"keywords": [
"assertion",
"assert",
"assert-js",
"type hinting",
"es6"
],
"author": "Norbert Orzechowicz <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/register": "^7.7.7",
"jsdom": "15.2.1",
"madge": "3.6.0",
"mocha": "5.2.0",
"webpack": "4.41.4",
"webpack-cli": "3.3.10"
}
}