-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "trdis",
"version": "1.0.1",
"description": "The most known way to travel in space and time",
"license": "MIT",
"repository": "Swizz/trdis",
"author": "Quentin Gerodel",
"keywords": [
"trdis",
"timetravel",
"object",
"state",
"do",
"undo",
"diff",
"json"
],
"main": "dist/trdis.js",
"module": "src/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"build": "npm run bundle && npm run minify",
"bundle": "rollup -i $npm_package_module -o $npm_package_main -m -f umd -n $npm_package_name",
"format": "prettier --semi false --write 'src/**/*.js'",
"minify": "uglifyjs $npm_package_main -o $npm_package_main --mangle --compress --source-map",
"prepare": "npm run build",
"push": "git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish",
"release": "npm run push && release --publish",
"test": "jest --coverage"
},
"dependencies": {},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"jest": "^21.2.1",
"prettier": "^1.8.1",
"release": "^2.5.4",
"rollup": "^0.50.0",
"uglify-js": "^3.1.8"
},
"babel": {
"presets": "env"
}
}