This repository has been archived by the owner on Jun 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
79 lines (79 loc) · 2.3 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "simulacra",
"description": "Data-binding function for the DOM.",
"version": "2.2.0",
"license": "MIT",
"author": {
"name": "daliwali",
"email": "[email protected]",
"url": "http://daliwa.li"
},
"homepage": "http://simulacra.js.org/",
"repository": {
"type": "git",
"url": "[email protected]:daliwali/simulacra.git"
},
"bugs": "https://github.com/daliwali/simulacra/issues",
"scripts": {
"clean": "rimraf coverage.json coverage dist",
"deploy": "./website/deploy.sh",
"build": "mkdirp dist && npm run build:dist && npm run build:min && npm run build:web",
"build:dist": "(node util/header.js && browserify util/global.js) > dist/simulacra.js",
"build:min": "(node util/header.js && uglifyjs -cm -- dist/simulacra.js) > dist/simulacra.min.js",
"build:web": "node website/build",
"prepublishOnly": "npm test",
"postpublish": "npm run build && npm run deploy && npm run tag",
"lint": "eslint lib test",
"tag": "git tag `npm v simulacra version` && git push origin --tags",
"test": "npm run lint && npm run test:render && npm run test:browser",
"test:render": "node test/render | tap-spec",
"test:browser": "node test/server & browserify -t browserify-istanbul test | tape-run | tap-spec",
"report": "./node_modules/.bin/istanbul report lcov text-summary"
},
"dependencies": {
"css-select": "^2.1.0",
"dom-serializer": "^1.0.1",
"htmlparser2": "^4.1.0"
},
"devDependencies": {
"browserify": "^16.5.1",
"browserify-istanbul": "^3.0.1",
"caniuse-db": "^1.0.30001065",
"cssnano": "^4.1.10",
"domino": "^2.1.5",
"eslint": "^7.1.0",
"eslint-config-boss": "^1.0.6",
"fs-extra": "^9.0.0",
"highlight.js": "^10.0.3",
"html-minifier": "^4.0.0",
"istanbul": "^0.4.5",
"marked": "^1.1.0",
"mkdirp": "^1.0.4",
"normalize.css": "^8.0.1",
"postcss": "^7.0.30",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.1",
"rimraf": "^3.0.2",
"tap-spec": "^5.0.0",
"tapdance": "^5.1.1",
"tape-run": "^7.0.0",
"uglify-js": "^3.9.3"
},
"main": "lib/index.js",
"files": [
"lib/",
"dist/*.js",
"/*.js",
"LICENSE"
],
"eslintConfig": {
"extends": "boss/es5"
},
"keywords": [
"browser",
"data",
"binding",
"object",
"dom"
]
}