This repository has been archived by the owner on Mar 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
87 lines (87 loc) · 3.29 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
{
"name": "tungstenjs",
"version": "0.18.3",
"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": "./dist/tungsten.backbone.node.js",
"browser": "./dist/tungsten.backbone.web.js",
"scripts": {
"clean": "rm -f dist/*.js",
"jasmine": "node test/jasmine.js",
"jasmine-debug": "node debug test/jasmine.js",
"pretest": "npm run eslint",
"test": "npm run tests",
"tests": "node ./test/build.js && npm run jasmine",
"tests-debug": "node ./test/build.js && npm run jasmine-debug",
"build-plugins": "webpack --config ./webpack.plugins.js",
"build-bb-dist-dev": "webpack --config ./webpack.standalone.js --env.adaptor=backbone --env.dev=true",
"build-bb-dist": "webpack --config ./webpack.standalone.js --env.adaptor=backbone",
"build-bb-dist-node-dev": "webpack --config ./webpack.standalone.js --env.adaptor=backbone --env.env=node --env.dev=true",
"build-bb-dist-node": "webpack --config ./webpack.standalone.js --env.adaptor=backbone --env.env=node",
"eslint": "node node_modules/eslint/bin/eslint src adaptors test precompile",
"cover": "node ./test/build.js --coverage && npm run jasmine",
"bump-tag": "node ./test/bump-tag.js",
"dist": "npm run clean && npm run build-plugins && npm run build-bb-dist && npm run build-bb-dist-dev && npm run build-bb-dist-node && npm run build-bb-dist-node-dev",
"release": "npm run bump-tag && npm run dist && publish-please && npm run revert-package",
"revert-package": "git checkout -- package.json"
},
"dependencies": {
"backbone": "^1.1.2",
"backbone.nativeajax": "^0.4.3",
"data-set": "^4.0.0",
"entities": "^1.1.1",
"extend": "^3.0.0",
"form-serialize": "^0.6.0",
"global": "^4.3.0",
"htmlparser2": "^3.8.3",
"jsdom": "^6.5.0",
"json-loader": "^0.5.2",
"purecss": "^0.6.0",
"underscore": "^1.7.0",
"virtual-dom": "^2.0.1",
"x-is-array": "^0.1.0"
},
"devDependencies": {
"async": "^1.5.2",
"babel-core": "6.4.5",
"babel-loader": "6.2.4",
"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",
"babel-plugin-transform-es2015-block-scoping": "^6.1.18",
"babel-plugin-transform-es2015-constants": "^6.1.4",
"babel-plugin-transform-es2015-template-literals": "^6.6.5",
"chai": "^2.2.0",
"chalk": "^1.1.1",
"coveralls": "^2.11.4",
"eslint": "2.2.0",
"express": "^4.13.3",
"glob": "^4.3.5",
"hogan-express": "^0.5.2",
"inquirer": "^0.12.0",
"isparta-loader": "^0.2.0",
"istanbul": "^0.3.19",
"jasmine": "^2.3.1",
"loader-utils": "^0.2.11",
"mkdirp": "~0.5.0",
"opener": "^1.4.1",
"publish-please": "^1.1.0",
"semver": "^5.1.0",
"source-map-loader": "^0.1.5",
"webpack": "2.1.0-beta.4",
"webpack-dev-middleware": "1.5.1"
},
"engines": {
"node": ">=4.0.0"
},
"directories": {
"example": "./examples",
"lib": "./src"
}
}