-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "immutagen",
"version": "1.0.9",
"description": "A library for emulating immutable generators in JavaScript",
"main": "immutagen.js",
"scripts": {
"test": "BABEL_ENV=test mocha \"src/**/*.spec.js\" --require @babel/register --reporter min",
"test:watch": "npm run test -- --watch",
"build": "browserify -s immutagen src/immutagen.js -o immutagen.js -t [ babelify ]",
"prepare": "npm test && npm run build",
"release": "xyz",
"release:patch": "xyz --increment patch",
"release:minor": "xyz --increment minor",
"release:major": "xyz --increment major"
},
"author": "Thomas Crockett",
"contributors": [
"Aadit M Shah <aaditmshah@fastmail.fm> (https://aaditmshah.github.io/)"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.5",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"xyz": "^3.0.0"
},
"keywords": [
"immutable",
"generators",
"javascript"
],
"repository": {
"type": "git",
"url": "https://github.com/pelotom/immutagen.git"
}
}