forked from gr0uch/simulacra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.76 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "simulacra",
"description": "One-way data binding for web applications.",
"version": "0.0.6",
"license": "MIT",
"author": {
"email": "[email protected]",
"url": "http://0x8890.com"
},
"homepage": "http://simulacra.js.org/",
"repository": {
"type": "git",
"url": "[email protected]:0x8890/simulacra.git"
},
"bugs": "https://github.com/0x8890/simulacra/issues",
"scripts": {
"clean": "rimraf coverage.json coverage dist",
"deploy": "npm run build && ./website/deploy.sh",
"build": "mkdirp dist && npm run build:dist && npm run build:min && npm run build:web",
"build:dist": "(node util/header; browserify util/global.js) > dist/simulacra.js",
"build:min": "(node util/header; uglifyjs dist/simulacra.js) > dist/simulacra.min.js",
"build:web": "node website/build",
"postpublish": "npm run deploy",
"lint": "eslint lib test",
"test": "(node test/server & browserify -t browserify-istanbul test | tape-run) && npm run report",
"report": "./node_modules/browserify-istanbul/node_modules/.bin/istanbul report lcov text-summary"
},
"dependencies": {},
"devDependencies": {
"browserify": "^12.0.1",
"browserify-istanbul": "^0.2.1",
"cssnext": "^1.8.4",
"ejs": "^2.3.4",
"eslint": "^1.10.1",
"eslint-config-0x8890": "^1.0.0",
"highlight.js": "^8.9.1",
"html-minifier": "^1.0.0",
"marked": "^0.3.5",
"mkdirp": "^0.5.1",
"normalize.css": "^3.0.3",
"rimraf": "^2.4.4",
"tapdance": "^4.0.1",
"tape-run": "^2.1.0",
"uglify-js": "^2.6.1"
},
"main": "lib/index.js",
"files": [
"lib/",
"LICENSE"
],
"eslintConfig": {
"extends": "0x8890",
"ecmaFeatures": {
"arrowFunctions": false,
"binaryLiterals": false,
"blockBindings": false,
"classes": false,
"defaultParams": false,
"destructuring": false,
"experimentalObjectRestSpread": false,
"forOf": false,
"generators": false,
"globalReturn": false,
"jsx": false,
"modules": false,
"objectLiteralComputedProperties": false,
"objectLiteralDuplicateProperties": false,
"objectLiteralShorthandMethods": false,
"objectLiteralShorthandProperties": false,
"octalLiterals": false,
"regexUFlag": false,
"regexYFlag": false,
"restParams": false,
"spread": false,
"superInFunctions": false,
"templateStrings": false,
"unicodeCodePointEscapes": false
},
"env": {
"es6": false
},
"rules": {
"block-scoped-var": 2,
"func-names": 0,
"no-var": 0,
"no-warning-comments": 1,
"one-var": 0,
"strict": [
2,
"global"
]
}
},
"keywords": [
"browser",
"data",
"binding",
"object",
"dom"
]
}