-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.59 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
{
"name": "fragments-js",
"version": "0.7.1",
"description": "Fragments is an ultra-fast templating and data-binding library for front-end JavaScript applications.",
"keywords": [
"templates",
"data-binding",
"front-end",
"DocumentFragment"
],
"homepage": "http://github.com/chip-js/fragments-js",
"author": {
"name": "Jacob Wright",
"email": "[email protected]",
"url": "http://github.com/jacwright"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chip-js/fragments-js.git"
},
"bugs": {
"url": "https://github.com/chip-js/fragments-js/issues"
},
"scripts": {
"test": "karma start --singleRun=true",
"bdd": "karma start",
"lint": "eslint src",
"build": "browserify --debug --standalone fragments index.js | exorcist dist/fragments.js.map > dist/fragments.js",
"watch": "watchify --debug --standalone fragments index.js | exorcist dist/fragments.js.map > dist/fragments.js",
"compress": "uglifyjs dist/fragments.js -c -o dist/fragments.min.js",
"prepublish": "npm run build",
"postbuild": "npm run compress"
},
"dependencies": {
"chip-utils": "^0.3.0",
"observations-js": "^0.3.0"
},
"devDependencies": {
"browserify": "^14.4.0",
"chai": "^4.1.0",
"eslint": "^4.2.0",
"exorcist": "^0.4.0",
"karma": "^1.7.0",
"karma-browserify": "^5.1.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-source-map-support": "^1.2.0",
"mocha": "^3.4.2",
"uglify-js": "^3.0.24",
"watchify": "^3.9.0"
}
}