forked from wayfair-archive/tungstenjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.84 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
{
"name": "tungstenjs",
"version": "0.8.5",
"description": "A modular framework for creating web UIs with high-performance rendering on both server and client.",
"author": "Matt DeGennaro <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/wayfair/tungstenjs.git"
},
"bugs": "https://github.com/wayfair/tungstenjs/issues",
"main": "tungsten.js",
"scripts": {
"jasmine": "node test/jasmine.js",
"pretest": "npm run eslint && npm run jscs",
"test": "npm run tests",
"tests": "node ./test/build.js && npm run jasmine",
"build-bb-dist-dev": "webpack --config ./webpack.standalone.js --adaptor=backbone --dev",
"build-bb-dist": "webpack --config ./webpack.standalone.js --adaptor=backbone",
"build-ampersand-dist-dev": "webpack --config ./webpack.standalone.js --adaptor=ampersand --dev",
"build-ampersand-dist": "webpack --config ./webpack.standalone.js --adaptor=ampersand",
"jscs": "node node_modules/jscs/bin/jscs src adaptors test precompile",
"eslint": "node node_modules/eslint/bin/eslint src adaptors test precompile",
"jsbeautify": "find ./src ./adaptors ./test ./precompile -name '*.js' | xargs ./node_modules/.bin/js-beautify -r",
"cover": "node ./test/build.js --coverage && npm run jasmine",
"prepublish": "npm run build-bb-dist && npm run build-ampersand-dist"
},
"dependencies": {
"ampersand-collection": "^1.4.5",
"ampersand-model": "^5.0.3",
"ampersand-view": "^7.3.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.1.18",
"babel-plugin-transform-es2015-parameters": "^6.3.13",
"babel-plugin-transform-es2015-shorthand-properties": "^6.3.13",
"backbone": "^1.1.2",
"backbone.nativeajax": "^0.4.3",
"data-set": "^4.0.0",
"form-serialize": "^0.6.0",
"htmlparser2": "^3.8.3",
"jsdom": "^6.5.0",
"json-loader": "^0.5.2",
"punch": "^0.5.46",
"purecss": "^0.6.0",
"ractive": "^0.6.1",
"underscore": "^1.7.0",
"virtual-dom": "^2.0.1",
"webpack-strip-block": "0.0.1",
"x-is-array": "^0.1.0"
},
"devDependencies": {
"babel-core": "6.3.26",
"babel-loader": "6.2.1",
"babel-plugin-transform-es2015-block-scoping": "^6.1.18",
"babel-plugin-transform-es2015-constants": "^6.1.4",
"chai": "^2.2.0",
"coveralls": "^2.11.4",
"entities": "^1.1.1",
"eslint": "1.10.3",
"express": "^4.13.3",
"glob": "^4.3.5",
"hogan-express": "^0.5.2",
"isparta-loader": "^0.2.0",
"istanbul": "^0.3.19",
"jasmine": "^2.3.1",
"js-beautify": "^1.5.10",
"jscs": "^2.1.0",
"loader-utils": "^0.2.11",
"mkdirp": "~0.5.0",
"opener": "^1.4.1",
"webpack": "^1.5.1",
"webpack-dev-middleware": "^1.2.0"
},
"engines": {
"node": ">=4.0.0"
},
"directories": {
"example": "./examples",
"lib": "./src"
}
}