-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (51 loc) · 1.57 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": "shapedom",
"version": "0.3.0",
"license": "MIT",
"description": "Static-as-possible virtual DOM JavaScript library.",
"keywords": [
"DOM",
"virtual DOM"
],
"homepage": "https://github.com/kuraga/shapedom",
"repository": {
"type": "git",
"url": "https://github.com/kuraga/shapedom.git"
},
"author": {
"name": "Alexander Kurakin",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/kuraga/shapedom/issues",
"email": "[email protected]"
},
"main": "index.js",
"jsnext:main": "dist/shapedom.js",
"browser:main": "dist/shapedom.browser.js",
"typings": "dist/shapedom.d.ts",
"devDependencies": {
"babel-cli": "^6.6.0",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-1": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"clone": "^1.0.2",
"glob": "^7.0.0",
"tape-run": "^2.1.3",
"tapes": "^3.1.0",
"typescript": "^1.8.2"
},
"dependencies": {
"an-uuid": "^1.0.0",
"babel-runtime": "^6.6.0"
},
"scripts": {
"build": "npm run build-es6 && npm run build-es5 && npm run build-browser",
"build-es6": "tsc --target es6 --declaration --noImplicitAny --outDir dist src/shapedom.ts",
"build-es5": "babel --presets es2015,stage-1 --plugins transform-runtime --out-file dist/shapedom.es5.js dist/shapedom.js",
"build-browser": "browserify --standalone Shapedom --outfile dist/shapedom.browser.js dist/shapedom.es5.js",
"test": "npm run build-es6 && node scripts/buildTest.js | tape-run"
}
}