-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
{
"name": "modifyjs",
"version": "0.3.1",
"description": "Modify your objects with a mongo syntax.",
"main": "dist/bundle.js",
"scripts": {
"test": "BABEL_ENV=dev jest src/",
"build": "BABEL_ENV=rollup rollup src/modify.js --config rollup.config.prod.js",
"browserify": "npm run build ; browserify dist/modify.js -o dist/bundle.js --full-paths",
"weight": "npm run browserify ; cat dist/bundle.js | uglifyjs --compress --mangle | discify --open --full-paths"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lgandecki/modifyjs.git"
},
"keywords": [
"mongo",
"update",
"modify",
"minimongo"
],
"author": "Łukasz Gandecki",
"license": "ISC",
"bugs": {
"url": "https://github.com/lgandecki/modifyjs/issues"
},
"homepage": "https://github.com/lgandecki/modifyjs#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^19.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"browserify": "^14.3.0",
"disc": "^1.3.2",
"immutability-helper": "^2.2.0",
"jest": "^19.0.2",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-visualizer": "^0.2.1",
"uglifyjs": "^2.4.10"
},
"dependencies": {
"clone": "^2.1.1",
"deep-equal": "^1.0.1"
}
}