-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "nodom",
"version": "2.4.0",
"description": "fake DOM for RE:DOM",
"main": "dist/nodom.js",
"jsnext:main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"dev": "node watch",
"fixlint": "semistandard 'lib/**/*.js' 'test/**/*.js' --fix",
"build": "npm run test && rollup -n nodom -c -f umd lib/index -o dist/nodom.js",
"uglify": "uglifyjs dist/nodom.js -cmo dist/nodom.min.js",
"lint": "semistandard 'lib/**/*.js' 'test/**/*.js'",
"test": "npm run lint && buble-tape-runner test/*.js test/utils/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pakastin/nodom.git"
},
"author": "Juha Lindstedt",
"license": "ISC",
"bugs": {
"url": "https://github.com/pakastin/nodom/issues"
},
"homepage": "https://github.com/pakastin/nodom#readme",
"devDependencies": {
"buble-tape-runner": "^1.0.4",
"chokidar": "~3.1.1",
"rollup": "~1.22.0",
"rollup-plugin-buble": "~0.19.8",
"semistandard": "~14.2.0",
"tape": "^4.11.0",
"uglify-js": "~3.6.0"
}
}