-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.13 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.13 KB
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
{
"name": "tusk",
"version": "0.8.1",
"description": "A slim virtual dom implementation for immutable structures.",
"author": "Dylan Piercey <pierceydylan@gmail.com>",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"precommit": "npm run release",
"test": "gulp test",
"build": "gulp build",
"release": "gulp test && gulp build && gulp build-test"
},
"keywords": [
"dom",
"virtual",
"react",
"tusk",
"render",
"immstruct",
"immutable",
"jsx"
],
"repository": {
"type": "git",
"url": "https://github.com/DylanPiercey/tusk"
},
"devDependencies": {
"browserify": "^12.0.1",
"bundle-collapser": "^1.2.1",
"coffee-react": "^4.0.0",
"coffee-reactify": "^4.0.0",
"gulp": "^3.9.0",
"gulp-mocha": "^2.1.3",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.4.2",
"husky": "^0.10.1",
"immstruct": "^2.0.0",
"jsdom": "^6.5.1",
"mocha": "^2.3.3",
"mocha-jsdom": "^1.0.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"escape-html": "^1.0.3",
"flatten-array": "0.0.4"
}
}