-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
57 lines (57 loc) · 1.52 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
50
51
52
53
54
55
56
57
{
"name": "jscalpel",
"version": "2.0.0",
"description": "A small feature library that makes it easier to manipulate objects",
"main": "dist/index.js",
"module": "dist/index.js",
"jsnext:main": "dist/index.js",
"scripts": {
"watch": "browser-sync start --proxy='localhost:8080' --files='*.html, dist/*.js'",
"build": "rollup -c --watch && http-server",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ihtml5/scalpel.git"
},
"keywords": [
"object",
"scalpel",
"processing"
],
"author": "ihtml5",
"license": "MIT",
"bugs": {
"url": "https://github.com/ihtml5/scalpel/issues"
},
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**"
]
},
"homepage": "https://github.com/ihtml5/scalpel#readme",
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"http-server": "^13.0.1",
"jest": "^27.1.0",
"regenerator-runtime": "^0.11.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1",
"uglify-es": "^3.1.0",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"eslint-config-standard": "^16.0.3"
},
"dependencies": {
"@rollup/plugin-babel": "^5.3.0",
"rollup": "^2.56.3"
}
}