-
Notifications
You must be signed in to change notification settings - Fork 239
/
package.json
47 lines (47 loc) · 1.5 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
{
"name": "fastdom",
"description": "Eliminates layout thrashing by batching DOM read/write operations",
"version": "1.0.11",
"main": "fastdom.js",
"types": "fastdom.d.ts",
"scripts": {
"lint": "jshint src/*",
"unit": "karma start test/karma.conf.js --single-run",
"test": "npm run -s unit && npm run -s lint",
"test-dev": "karma start test/karma.conf.js --browsers Firefox",
"coveralls": "cat test/coverage/lcov.info | coveralls",
"compress": "uglifyjs fastdom.js --compress='drop_console,sequences,dead_code,booleans,conditionals,unused,if_return,join_vars,pure_funcs=\"debug\"' --mangle --reserved='require,define,module,exports' > fastdom.min.js",
"build": "webpack && npm run -s compress",
"watch": "webpack -w"
},
"homepage": "https://github.com/wilsonpage/fastdom",
"author": {
"name": "Wilson Page",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/wilsonpage/fastdom.git"
},
"license": "MIT",
"devDependencies": {
"chai": "^3.4.1",
"coveralls": "^2.11.6",
"jshint": "^2.8.0",
"karma": "^0.13.15",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.1.3",
"mocha": "^2.3.4",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"uglify-js": "^2.4.23",
"webpack": "^1.12.9"
},
"dependencies": {
"strictdom": "^1.0.1"
}
}