-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
34 lines (34 loc) · 1.11 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
{
"name": "mewt",
"version": "2.0.2",
"description": "Immutability in under one kilobyte",
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib && babel index.js -d lib",
"lint": "eslint index.js",
"test": "npm run build && jest",
"benchmark": "node benchmark.js",
"prepublishOnly": "npm run lint && npm run build",
"filesize": "node -e \"console.log(require('fs').statSync('lib/index.js').size + ' bytes')\"",
"assertfilesize": "node -e \"require('assert')((require('fs').statSync('lib/index.js').size) < 1024, 'file size exceeds 1KB')\"",
"watchfilesize": "watch -p \"index.js\" -c \"npm run build && npm run filesize\""
},
"author": "Sam Gluck <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-preset-babili": "0.1.4",
"brolly": "1.5.0",
"eslint": "4.3.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "3.0.1",
"jest": "20.0.4",
"rimraf": "2.6.1",
"watch-cli": "0.2.2"
},
"jest": {
"testRegex": "test.js"
}
}